/* ========================================
   AQUATO - SHARED STYLES (ALL PAGES)
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
    --dark: #0a1628;
    --dark-2: #0f1f3a;
    --dark-3: #162d50;
    --text: #333;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --white: #fff;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
    --shadow-blue: 0 8px 30px rgba(79, 70, 229, .25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all .3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.container-wide {
    max-width: 1400px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-blue)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, .4)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px)
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px
}

.section-subtitle {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 0 auto 20px
}

.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8
}

.decor-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 20px
}

.decor-dots.center {
    justify-content: center
}

.decor-dots span {
    width: 28px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px
}

.decor-dots span:nth-child(2) {
    width: 18px;
    opacity: .7
}

.decor-dots span:nth-child(3) {
    width: 12px;
    opacity: .5
}

.decor-dots span:nth-child(4) {
    width: 8px;
    opacity: .3
}

.decor-dots span:nth-child(5) {
    width: 6px;
    opacity: .2
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--white);
    padding: 0;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    z-index: 1001
}

.top-bar .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 60px
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 35px
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: .88rem;
    font-weight: 500
}

.top-bar-item:hover {
    color: #6366f1
}

.top-bar-item i {
    color: #6366f1;
    font-size: 1rem
}

.top-bar-right {
    display: flex;
    align-items: stretch;
    gap: 30px
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px
}

.top-bar-social a {
    color: #475569;
    font-size: 1.4rem;
    transition: var(--transition)
}

.top-bar-social a:hover {
    color: #6366f1;
    transform: translateY(-2px)
}

.top-bar-cta {
    background: #3b82f6;
    color: var(--white);
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin-right: -20px;
    transition: var(--transition)
}

.top-bar-cta:hover {
    background: #2563eb
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    background: var(--white);
    padding: 0;
    /* Removed padding to allow for a larger logo */
    position: relative;
    z-index: 1000;
    border-bottom: 1px dashed rgba(0, 0, 0, .1)
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
    padding: 0
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-img {
    height: 130px;
    /* Increased from 80px */
    width: auto;
    object-fit: contain;
    display: block;
    margin: -10px 0;
    /* Use negative margin to keep header height compact */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0
}

.nav-list li {
    display: flex;
    align-items: center
}

.nav-link {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
    position: relative;
    padding: 10px 20px
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    display: inline-block;
    opacity: .8
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.hamburger-icon-wrapper {
    width: 55px;
    height: 55px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition)
}

.hamburger-icon-wrapper:hover {
    border-color: #6366f1;
    color: #6366f1
}

/* menu-toggle visibility is controlled in the responsive section */

/* ===== MEGA MENU STYLES ===== */
.nav-item-has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    width: max-content;
    min-width: 500px;
    max-width: 90vw;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 4px solid var(--primary);
}

.nav-item-has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary);
}

.mega-menu-item {
    padding: 12px 15px;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    text-decoration: none;
}

.mega-menu-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.mega-menu-item:hover {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
    transform: translateX(3px);
}

.mega-menu-item:hover i {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .nav-item-has-mega {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .mega-menu {
        position: static;
        width: 100%;
        min-width: unset;
        max-width: unset;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: none;
        padding: 5px 15px 15px;
        display: none;
        grid-template-columns: 1fr;
        background: transparent;
    }

    .mega-menu::before {
        display: none;
    }

    .nav-item-has-mega:hover .mega-menu,
    .nav-item-has-mega.active .mega-menu {
        display: grid;
    }

    .mega-menu-item {
        padding: 10px 15px;
        color: var(--text);
        background: var(--white);
        margin-bottom: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
}


/* ===== PAGE HERO BANNER ===== */
.page-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0f2847 40%, #162d50 100%);
    overflow: hidden;
    text-align: center
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504893524553-b855bce32c67?w=1400&q=60') center/cover no-repeat;
    opacity: .2
}

.page-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, .4), rgba(10, 22, 40, .7))
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: .95rem
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, .7)
}

.page-hero-breadcrumb a:hover {
    color: var(--primary-light)
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, .4)
}

.breadcrumb-active {
    color: var(--primary-light);
    font-weight: 500
}

/* ===== HERO (HOME) ===== */


/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 90vh;
    width: 100%;
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(79, 70, 229, 0.3) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-slide .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
}

.hero-slide .hero-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slide .hero-title .highlight {
    background: linear-gradient(90deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-slide .hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin: 0 auto 35px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-slide .btn-hero {
    background: var(--primary-gradient) !important;
    color: var(--white) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    border: 2px solid transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide .btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.6);
    background: var(--primary) !important;
}

.hero-slide .btn-white {
    background: #ffffff !important;
    color: var(--primary) !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: 15px;
}

.hero-slide .btn-white:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 900;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
}

@media (max-width: 768px) {

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
        font-size: 0.8rem;
    }
}

/* Active Slide Animation */
.swiper-slide-active .animate-up {
    animation: sliderFadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.swiper-slide-active .hero-badge {
    animation-delay: 0.2s;
}

.swiper-slide-active .hero-title {
    animation-delay: 0.4s;
}

.swiper-slide-active .hero-desc {
    animation-delay: 0.6s;
}

.swiper-slide-active .hero-btns {
    animation-delay: 0.8s;
}

@keyframes sliderFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slant-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 5;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-top: -20px;
    box-shadow: 0 15px 45px rgba(79, 70, 229, 0.08);
    /* Premium section shadow */
}

.brands-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brands-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0px;
    /* Reset margin since wrapper handles it */
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* BRANDS PROMO BANNERS */
.brands-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.brands-promo {
    width: 180px;
    flex-shrink: 0;
    transition: var(--transition);
    cursor: pointer;
}

.brands-promo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.promo-left {
    transform: rotate(-12deg);
}

.promo-right {
    transform: rotate(12deg);
}

.promo-left.animate-bounce-slow {
    animation: bounceSlowLeft 4s ease-in-out infinite;
}

.promo-right.animate-bounce-slow {
    animation: bounceSlowRight 4s ease-in-out infinite;
}

@keyframes bounceSlowLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-15px) rotate(-15deg) scale(1.05);
    }
}

@keyframes bounceSlowRight {

    0%,
    100% {
        transform: translateY(0) rotate(12deg);
    }

    50% {
        transform: translateY(-15px) rotate(15deg) scale(1.05);
    }
}

.brands-promo:hover {
    transform: scale(1.15) rotate(0deg) !important;
    animation-play-state: paused;
}

@media (max-width: 1200px) {
    .brands-header-wrapper {
        gap: 30px;
    }

    .brands-promo {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .brands-header-wrapper {
        gap: 20px;
    }

    .brands-promo {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .brands-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .brands-title {
        font-size: 1.25rem;
        margin-bottom: 0;
        padding-bottom: 8px;
        line-height: 1.3;
        width: min-content;
        min-width: 160px;
    }

    .brands-title::after {
        width: 30px;
        height: 3px;
    }

    .brands-promo {
        width: 75px;
        flex-shrink: 0;
    }

    /* Tighter rotation and bounce for mobile side-by-side */
    .promo-left {
        transform: rotate(-8deg);
    }

    .promo-right {
        transform: rotate(8deg);
    }

    @keyframes bounceSlowLeft {

        0%,
        100% {
            transform: translateY(0) rotate(-8deg);
        }

        50% {
            transform: translateY(-5px) rotate(-10deg) scale(1.03);
        }
    }

    @keyframes bounceSlowRight {

        0%,
        100% {
            transform: translateY(0) rotate(8deg);
        }

        50% {
            transform: translateY(-5px) rotate(10deg) scale(1.03);
        }
    }
}

@media (max-width: 480px) {
    .brands-header-wrapper {
        gap: 5px;
    }

    .brands-promo {
        width: 65px;
    }

    .brands-title {
        font-size: 1.1rem;
        min-width: 140px;
    }
}



.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 1160px;
    margin: 0 auto;
}

.brand-card {
    width: 165px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    filter: grayscale(0%);
    opacity: 1;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.18);
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3);
    border-color: var(--primary-light);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .brands-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .brand-card {
        width: 140px;
        height: 90px;
        padding: 15px;
    }
}


/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 100px 0;
    background: var(--bg-light);
    box-shadow: inset 0 20px 40px rgba(79, 70, 229, 0.05), inset 0 -20px 40px rgba(79, 70, 229, 0.05);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-light);
}

.category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.category-badge.h-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.category-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.category-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    border: none;
}

.category-btn i {
    font-size: 1.1rem;
}

.category-btn:hover {
    background: #128c7e;
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .brands-section {
        padding: 40px 0;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-card {
        width: 100px;
        height: 60px;
    }

    .brands-title {
        font-size: 1.8rem;
    }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    padding: 40px 0;
    background: var(--white)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition)
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-3px)
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px
}

.feature-text p {
    font-size: .85rem;
    color: var(--text-light)
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--white);
    box-shadow: inset 0 20px 50px rgba(79, 70, 229, 0.04);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.about-content-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-image-column {
    position: relative;
    padding-left: 40px
}

.about-decor-bars {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%
}

.about-decor-bars .bar {
    width: 6px;
    border-radius: 10px
}

.bar-purple {
    height: 120px;
    background: linear-gradient(180deg, #7c3aed 0%, #4f46e5 100%)
}

.bar-blue {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%)
}

.about-image-wrapper {
    position: relative;
    width: 100%
}

.about-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .1)
}

.about-exp-badge {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(79, 70, 229, .3);
    z-index: 5
}

.exp-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: .9;
    margin-bottom: 5px
}

.exp-label {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 0;
}

.about-desc-wrapper p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px
}

.about-desc-wrapper p:last-child {
    margin-bottom: 0px;
}

.about-checklist {
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5
}

.about-checklist li i {
    color: #7c3aed;
    font-size: 1.2rem;
    margin-top: 4px
}

.about-btn {
    width: 100%;
    padding: 22px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    background: linear-gradient(90deg, #7c3aed 0%, #3b82f6 100%);
    border: none;
    box-shadow: 0 15px 40px rgba(79, 70, 229, .25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, .4)
}

/* ===== STATS ===== */
.stats-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1518173946687-a4c8a9833d8e?w=1400&q=80') center/cover no-repeat;
    opacity: .5;
    z-index: 1
}

.stats-section .container {
    position: relative;
    z-index: 2
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center
}

.stat-item {
    color: var(--white);
    position: relative
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .2)
}

.stat-item:last-child::after {
    display: none
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    display: inline;
    line-height: .9
}

.stat-plus {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-left: 5px
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: .5px
}

/* ===== BOTTLE FEATURE SECTION ===== */
.bottle-feature-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden
}

.bottle-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center
}

.features-side {
    display: flex;
    flex-direction: column;
    gap: 50px
}

.feature-item-alt {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition)
}

.feature-item-alt:hover {
    transform: translateY(-5px)
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
    background: var(--white)
}

.feature-item-alt:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(99, 102, 241, .3)
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px
}

.feature-text p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6
}

.text-right {
    text-align: right
}

.bottle-central-image {
    position: relative;
    text-align: center
}

.main-jug-img {
    max-height: 650px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(99, 102, 241, .15));
    animation: float 5s ease-in-out infinite
}

.jug-reflections {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, .1) 0%, transparent 70%);
    border-radius: 50%
}

@media(max-width:1024px) {
    .bottle-grid-container {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .features-side {
        gap: 30px
    }

    .text-right {
        text-align: left
    }

    .features-left .feature-item-alt {
        flex-direction: row-reverse;
        justify-content: flex-end
    }

    .bottle-central-image {
        order: -1
    }
}

/* ===== HOW WE WORK ===== */
.howwework-section {
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.howwework-bg {
    position: relative;
    height: 500px
}

.howwework-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.howwework-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .85), rgba(79, 70, 229, .6))
}

.howwework-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2
}

.section-title.light {
    color: var(--white)
}

.section-subtitle.light {
    color: rgba(255, 255, 255, .8)
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 20px;
    box-shadow: 0 0 0 15px rgba(255, 255, 255, .15), 0 0 0 30px rgba(255, 255, 255, .08);
    transition: var(--transition);
    animation: pulse-play 2s ease-in-out infinite
}

.play-btn:hover {
    transform: scale(1.1)
}

.play-btn i {
    margin-left: 4px
}

.howwework-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3
}

.howwework-wave svg {
    display: block;
    width: 100%
}

/* Blue wave section variant */
.blue-wave-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.blue-wave-section .section-title {
    color: var(--white)
}

.blue-wave-section .section-desc {
    color: rgba(255, 255, 255, .8);
    max-width: 700px;
    margin: 0 auto 30px
}

.blue-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 3
}

.blue-wave-top svg {
    display: block;
    width: 100%
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--white)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.pricing-card.featured {
    background: var(--dark);
    border-color: var(--dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg)
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px)
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.pricing-card.featured .pricing-header h3 {
    color: var(--white)
}

.pricing-header p {
    color: var(--text-light);
    font-size: .9rem
}

.pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, .6)
}

.pricing-price {
    margin: 28px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1
}

.pricing-card.featured .pricing-price .amount {
    color: var(--white)
}

.pricing-price .period {
    font-size: .9rem;
    color: var(--text-light);
    align-self: flex-end;
    margin-bottom: 8px
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, .6)
}

.pricing-features {
    margin-bottom: 32px
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .1)
}

.pricing-features li:last-child {
    border-bottom: none
}

.pricing-features li i {
    color: var(--primary-light);
    font-size: .85rem
}

.pricing-features li.disabled {
    color: var(--text-lighter)
}

.pricing-features li.disabled i {
    color: var(--text-lighter)
}

.pricing-btn {
    width: 100%
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    box-shadow: none
}

.pricing-card.featured .btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light)
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.testimonials-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: marquee 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 9 - 30px * 9));
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 380px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: .2;
    margin-bottom: 12px;
    line-height: 1
}

.testimonial-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px
}

.testimonial-text {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 24px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light)
}

.testimonial-author h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark)
}

.testimonial-author p {
    font-size: .8rem;
    color: var(--primary);
    font-weight: 500
}

.testimonial-author p i {
    color: #f59e0b;
    font-size: .75rem
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px
}

.dot {
    width: 14px;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer
}

.dot.active {
    width: 30px;
    background: var(--primary-gradient)
}

/* ===== EXPERTS ===== */
.experts-section {
    padding: 100px 0;
    background: var(--white)
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.expert-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.expert-image {
    position: relative;
    overflow: hidden;
    height: 350px
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.expert-card:hover .expert-image img {
    transform: scale(1.05)
}

.expert-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: var(--transition);
    opacity: 0
}

.expert-card:hover .expert-social {
    bottom: 20px;
    opacity: 1
}

.expert-social a {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .9rem;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.expert-social a:hover {
    background: var(--primary);
    color: var(--white)
}

.expert-info {
    padding: 24px 20px;
    text-align: center;
    background: var(--white)
}

.expert-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.expert-info p {
    font-size: .9rem;
    color: var(--primary);
    font-weight: 500
}

/* ===== BANNER CTA ===== */
.banner-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    /* Dark fallback */
    text-align: center;
}

.banner-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559839914-17aae19cec71?w=1600&q=80') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.5;
    z-index: 1;
}

.banner-cta-offset-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centered */
    width: 92%;
    height: 85%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 2;
}

.banner-cta-offset-box::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-lg) - 5px);
}

.banner-cta-container {
    position: relative;
    z-index: 3;
}

.banner-cta-tagline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-cta-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
    .banner-cta-tagline {
        font-size: 2rem;
    }
}

.blog-content h3 a:hover {
    color: var(--primary)
}

.blog-content>p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px
}

.blog-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.blog-link:hover {
    gap: 12px
}

/* ===== CTA / GET A QUOTE ===== */
.cta-section {
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    margin-top: 80px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 60px 60px 0
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center
}

.cta-image img {
    max-height: 420px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, .3)
}

.cta-image-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(255, 255, 255, .2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 20s linear infinite
}

.cta-content {
    padding: 20px 0
}

.cta-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.1);
    background: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.cta-form textarea {
    margin-bottom: 30px;
    resize: vertical;
}

.cta-form .btn {
    width: auto;
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: #0f172a url('assets/footer-bg.png') center/cover no-repeat;
    color: var(--white);
    padding-top: 60px;
    overflow: hidden;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1
}

.footer-main {
    padding: 0 0 40px;
    position: relative;
    z-index: 2
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none
}

.footer-logo-img {
    height: 160px;
    /* Enlarge logo size */
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    /* Make it white for dark footer */
}

.footer-about p {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 350px
}

.footer-social {
    display: flex;
    gap: 12px
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #1e293b;
    border-radius: 8px;
    /* Square with rounded corners per image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition)
}

.footer-social a:hover {
    background: #6366f1;
    transform: translateY(-3px)
}

.footer-col h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #6366f1;
    border-radius: 2px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 20px
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.footer-gallery img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
    /* Rounded corners as per image */
    transition: var(--transition)
}

.footer-map {
    width: 100%;
    line-height: 0;
    transition: var(--transition);
}

.footer-map iframe {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.footer-map:hover iframe {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.footer-bottom {
    background: #1e293b;
    padding: 30px 0;
    position: relative;
    z-index: 2
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    font-weight: 500
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    align-items: center
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition)
}

.footer-bottom-links a::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    /* Blue dot separator per image */
    border-radius: 50%;
    display: inline-block
}

.footer-bottom-links a:first-child::before {
    display: none
}

.footer-bottom-links a:hover {
    color: var(--white)
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-top:hover {
    transform: translateY(-4px)
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.about-detail-section {
    padding: 100px 0;
    background: var(--white)
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center
}

.about-detail-img-wrapper {
    position: relative
}

.about-img-main {
    width: 75%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg)
}

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 55%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-blue);
    z-index: 3;
    border: 5px solid var(--white)
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1
}

.exp-text {
    font-size: .7rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: .9
}

.about-detail-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px
}

.about-detail-desc {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 16px
}

.about-detail-checklist {
    margin: 28px 0 36px
}

.about-detail-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.6
}

.about-detail-checklist li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0
}

.about-stats-section {
    padding: 80px 0;
    background: var(--bg-light)
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.about-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.about-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.about-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-blue);
    position: relative
}

.about-stat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-radius: 50%;
    border: 2px dashed rgba(79, 70, 229, .3);
    animation: rotate-slow 20s linear infinite
}

.about-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px
}

.about-stat-label {
    font-size: .9rem;
    color: var(--text-light);
    font-weight: 500
}

.team-section {
    padding: 100px 0;
    background: var(--white)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.team-card:hover .team-image img {
    transform: scale(1.05)
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, .8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition)
}

.team-card:hover .team-overlay {
    opacity: 1
}

.team-social {
    display: flex;
    gap: 8px;
    transform: translateY(20px);
    transition: transform .4s ease
}

.team-card:hover .team-social {
    transform: translateY(0)
}

.team-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .85rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, .2)
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px)
}

/* ===== SERVICES PAGE ===== */
.services-cards-section {
    padding: 0 0 60px
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-blue)
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.service-card p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.7
}

.video-section {
    position: relative;
    margin-bottom: 0
}

.video-section-img {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    max-width: 900px
}

.video-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-section-img .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.clients-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border)
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap
}

.client-logo {
    opacity: .5;
    transition: var(--transition);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px
}

.client-logo:hover {
    opacity: 1
}

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition)
}

.faq-item.active {
    box-shadow: var(--shadow)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition)
}

.faq-question h4 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    transition: var(--transition)
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.8
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white)
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: start
}

.contact-sidebar {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    color: var(--white)
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px
}

.contact-info-item:last-child {
    margin-bottom: 0
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0
}

.contact-info-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px
}

.contact-info-item p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6
}

.contact-info-item a {
    color: var(--primary-light)
}

.contact-form-section {
    padding: 0
}

.contact-form-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.1);
        opacity: .1
    }
}

@keyframes pulse-play {

    0%,
    100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, .15), 0 0 0 30px rgba(255, 255, 255, .08)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, .2), 0 0 0 40px rgba(255, 255, 255, .1)
    }
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0)
}

/* ===== PREMIUM WHY US SECTION ===== */
.premium-why-us {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
}

.premium-why-us-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1559839914-17aae19cec71?w=1400&q=80') center/cover no-repeat fixed;
    z-index: -1;
}

.premium-why-us-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    /* 60% opacity overlay for better text contrast */
    z-index: 1;
}

.why-us-glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-us-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-glass-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    /* Vibrant blue shadow on hover */
    border-color: rgba(99, 102, 241, 0.5);
}

.why-us-glass-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.why-us-glass-card:hover .why-us-glass-icon {
    transform: rotateY(180deg);
}

.why-us-glass-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.why-us-glass-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
    .why-us-glass-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .why-us-glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us-glass-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== MISSION & VISION SECTION ===== */
/* ===== MISSION & VISION SECTION (REDESIGNED) ===== */
.mission-vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6fffa 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.mv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.mv-icon-wrapper i {
    font-size: 1.5rem;
}

.mv-decor-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.mv-card-body h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.mv-card-body p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.mv-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.mv-tag {
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-3);
    backdrop-filter: blur(5px);
}

.mv-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

/* Color Variants */
.mission-card {
    background: linear-gradient(135deg, rgba(224, 231, 255, 0.6) 0%, rgba(237, 233, 254, 0.6) 100%);
}

.mission-card .mv-icon-wrapper i {
    color: #6366f1;
}

.mission-card .mv-tag {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.vision-card {
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.6) 0%, rgba(236, 253, 245, 0.6) 100%);
}

.vision-card .mv-icon-wrapper i {
    color: #10b981;
}

.vision-card .mv-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

@media (max-width: 991px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}


.vision-card .mv-icon-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.vision-card h3 {
    color: #059669;
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mv-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .mv-icon-box {
        margin: 0 auto;
    }
}


/* ===== STORY FEATURES SECTION ===== */
.story-features-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.story-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-feature-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.story-feature-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
}

.story-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.story-feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.card-bg-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.story-feature-card:hover .card-bg-shape {
    transform: scale(1.3) translate(-10px, 10px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.squiggle-sep {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

@media(max-width: 1024px) {
    .story-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 600px) {
    .story-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE ===== */

/* --- Menu Toggle Button (hamburger icon for mobile) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    transition: var(--transition)
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition)
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* --- Mobile nav overlay backdrop --- */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 997;
    opacity: 0;
    transition: opacity .3s ease
}

.nav-backdrop.active {
    display: block;
    opacity: 1
}

/* ===== TABLET (max-width: 1024px) ===== */
@media(max-width:1024px) {
    .container {
        padding: 0 24px
    }

    .hero-slider {
        height: 700px;
    }

    .hero-slide .hero-title {
        font-size: 3.5rem;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 80px 0 120px
    }

    .hero-title {
        font-size: 3.5rem
    }

    .hero-main-jug {
        height: 400px
    }

    .hero-jug-secondary {
        height: 280px;
        right: -60px
    }

    .section-title {
        font-size: 2rem
    }

    .about-main-title {
        font-size: 2.5rem
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid {
        gap: 50px
    }

    .about-main-img {
        height: 450px
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    .about-detail-grid {
        gap: 40px
    }

    .team-grid,
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cta-container {
        gap: 40px
    }

    .cta-image img {
        width: 280px;
        height: 280px
    }

    .stats-section {
        padding: 80px 0
    }

    .about-section {
        padding: 80px 0
    }

    .bottle-feature-section {
        padding: 80px 0
    }

    .hamburger-icon-wrapper {
        display: flex;
    }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media(max-width:768px) {

    /* --- Top Bar: hide on mobile --- */
    .top-bar {
        display: none
    }

    /* --- Header adjustments --- */
    .header {
        padding: 15px 0
    }

    .header.scrolled {
        padding: 10px 0
    }

    .logo {
        font-size: 1.8rem;
        gap: 8px
    }

    .logo-icon {
        font-size: 1.6rem
    }

    .hamburger-icon-wrapper {
        display: flex
    }

    /* --- Show the menu toggle button --- */
    .menu-toggle {
        display: none
    }

    /* --- Mobile Navigation Drawer --- */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--dark);
        padding: 90px 30px 30px;
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 998;
        box-shadow: -10px 0 40px rgba(0, 0, 0, .3);
        overflow-y: auto
    }

    .nav.open {
        right: 0
    }

    .nav-list {
        flex-direction: column;
        gap: 0
    }

    .nav-list li {
        width: 100%
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        width: 100%;
        color: rgba(255, 255, 255, .85);
        font-size: 1.05rem
    }

    .nav-link:hover,
    .nav-link.active {
        color: #818cf8
    }

    .nav-dot {
        display: none
    }

    /* --- Hero Section --- */
    .hero-slider {
        height: 550px;
    }

    .hero-slide .hero-title {
        font-size: 2.5rem;
    }

    .hero-slide .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .hero-slide .hero-desc {
        font-size: 1rem;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0 100px
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px
    }

    .hero-content {
        order: 2
    }

    .hero-jug-showcase {
        order: 1
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px
    }

    .hero-subtitle-banner {
        font-size: .8rem;
        padding: 8px 18px;
        margin-bottom: 18px
    }

    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 30px;
        max-width: 100%
    }

    .hero-main-jug {
        height: 300px
    }

    .hero-jug-secondary {
        height: 200px;
        right: -30px;
        bottom: 30px
    }

    .hero-slant-bottom {
        height: 60px
    }

    .hero-btns {
        justify-content: center
    }

    .btn-hero {
        padding: 16px 30px;
        font-size: .95rem
    }

    /* --- Section spacing --- */
    .about-section,
    .bottle-feature-section,
    .pricing-section,
    .testimonials-section,
    .experts-section,
    .blog-section,
    .cta-section,
    .about-detail-section,
    .team-section,
    .faq-section,
    .contact-section {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-title {
        font-size: 1.8rem
    }

    .section-desc {
        font-size: .9rem
    }

    /* --- Features Strip --- */
    .features-strip {
        padding: 30px 0
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .feature-item {
        padding: 16px
    }

    /* --- About Section --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-image-column {
        padding-left: 0
    }

    .about-decor-bars {
        display: none
    }

    .about-main-img {
        height: 350px
    }

    .about-exp-badge {
        width: 130px;
        height: 130px;
        top: -15px;
        left: -10px
    }

    .exp-num {
        font-size: 3.5rem
    }

    .about-main-title {
        font-size: 2.2rem
    }

    /* --- Stats --- */
    .stats-section {
        padding: 60px 0
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .stat-item::after {
        display: none
    }

    .stat-number {
        font-size: 3rem
    }

    /* --- Pricing --- */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto
    }

    .pricing-card.featured {
        transform: none
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px)
    }

    /* --- Testimonials --- */
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .testimonial-card {
        padding: 30px
    }

    /* --- Experts --- */
    .experts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .expert-image {
        height: 280px
    }

    /* --- Blog --- */
    .blog-grid {
        grid-template-columns: 1fr
    }

    /* --- CTA Section --- */
    .cta-bg {
        width: 100%;
        height: 250px;
        border-radius: 0 0 40px 40px
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px
    }

    .cta-image img {
        width: 250px;
        height: 250px
    }

    .cta-content {
        padding: 0
    }

    .cta-content .section-title {
        text-align: center !important
    }

    .cta-content .decor-dots {
        justify-content: center
    }

    .cta-desc {
        text-align: center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    /* --- How We Work / Blue Wave --- */
    .howwework-bg {
        height: 350px
    }

    .blue-wave-section {
        padding: 60px 0
    }

    /* --- Video Section --- */
    .video-section-img {
        height: 280px
    }

    /* --- About Detail Page --- */
    .about-detail-grid {
        grid-template-columns: 1fr
    }

    .about-img-main {
        width: 85%;
        height: 300px
    }

    .about-img-overlay {
        width: 55%;
        height: 180px;
        right: 0;
        bottom: -20px
    }

    .about-detail-title {
        font-size: 2rem
    }

    /* --- About Stats --- */
    .about-stats-section {
        padding: 60px 0
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .about-stat-item {
        padding: 30px 16px
    }

    .about-stat-number {
        font-size: 2.2rem
    }

    /* --- Team --- */
    .team-section {
        padding: 60px 0
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .team-image {
        height: 220px
    }

    /* --- Page Hero --- */
    .page-hero {
        padding: 70px 0 50px
    }

    .page-hero-title {
        font-size: 2rem
    }

    /* --- Services Cards --- */
    .services-cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .service-card {
        padding: 30px 20px
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 60px 0
    }

    .faq-question {
        padding: 16px 20px
    }

    .faq-question h4 {
        font-size: .9rem
    }

    .faq-answer-inner {
        padding: 0 20px 16px;
        font-size: .85rem
    }

    /* --- Contact --- */
    .contact-sidebar {
        padding: 30px 24px
    }

    .contact-form-title {
        font-size: 1.8rem
    }

    /* --- Footer --- */
    .footer {
        padding-top: 60px
    }

    .footer-main {
        padding: 0 0 50px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-about p {
        max-width: 100%
    }

    .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 20px
    }

    .footer-gallery {
        gap: 10px
    }

    .footer-gallery img {
        height: 70px
    }

    .footer-bottom {
        padding: 20px 0
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .footer-bottom p {
        font-size: .9rem
    }

    .footer-bottom-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center
    }

    .footer-bottom-links a {
        font-size: .9rem
    }

    /* --- Clients Section --- */
    .clients-grid {
        gap: 30px
    }

    .client-logo {
        font-size: 1.1rem
    }

    /* --- Scroll to top --- */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem
    }

    /* --- Buttons --- */
    .btn {
        padding: 12px 26px;
        font-size: .9rem
    }

    /* Story section */
    .story-features {
        flex-wrap: wrap
    }

    .about-list {
        grid-template-columns: 1fr
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    /* --- Hero Slider Mobile Fix --- */
    .hero-slider {
        height: 450px;
    }

    .hero-slide-content {
        padding: 0 45px;
    }

    .hero-slide .hero-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .hero-slide .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-slide .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .hero-slide .hero-btns {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-slide .btn-hero {
        padding: 10px 18px;
        font-size: 0.75rem;
        width: auto;
        min-width: 120px;
        margin: 0;
    }

    .hero-slide .btn-white {
        margin-left: 0;
    }

    .hero-slider .swiper-pagination {
        bottom: 50px !important;
    }

    /* --- Typography --- */
    .section-title {
        font-size: 1.5rem
    }

    .section-subtitle {
        font-size: .82rem
    }

    .about-main-title {
        font-size: 1.8rem
    }

    .about-detail-title {
        font-size: 1.6rem
    }

    .contact-form-title {
        font-size: 1.5rem
    }

    .page-hero-title {
        font-size: 1.6rem
    }

    .page-hero {
        padding: 60px 0 40px
    }

    /* --- About Section --- */
    .about-exp-badge {
        width: 110px;
        height: 110px
    }

    .exp-num {
        font-size: 3rem
    }

    .about-main-img {
        height: 280px
    }

    /* --- Stats --- */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .stat-number {
        font-size: 2.2rem
    }

    .stat-label {
        font-size: .85rem
    }

    .stat-plus {
        font-size: 1.8rem
    }

    /* --- Experts --- */
    .experts-grid {
        grid-template-columns: 1fr
    }

    .expert-image {
        height: 250px
    }

    /* --- Team --- */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .team-image {
        height: 260px
    }

    /* --- Services --- */
    .services-cards-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        padding: 28px 18px
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    /* --- About Detail --- */
    .about-img-main {
        width: 100%;
        height: 250px
    }

    .about-img-overlay {
        width: 55%;
        height: 150px;
        right: 0
    }

    .about-experience-badge {
        width: 85px;
        height: 85px;
        top: -12px;
        left: -8px
    }

    .exp-number {
        font-size: 1.6rem
    }

    .exp-text {
        font-size: .6rem
    }

    .about-stat-item {
        padding: 24px 12px
    }

    .about-stat-number {
        font-size: 1.8rem
    }

    .about-stat-label {
        font-size: .8rem
    }

    /* --- Testimonials --- */
    .testimonial-card {
        padding: 24px 18px
    }

    .testimonial-heading {
        font-size: 1.1rem
    }

    .testimonial-text {
        font-size: .88rem
    }

    .testimonial-author img {
        width: 44px;
        height: 44px
    }

    /* --- Pricing --- */
    .pricing-card {
        padding: 30px 24px
    }

    .pricing-price .amount {
        font-size: 3rem
    }

    /* --- Blog --- */
    .blog-image {
        height: 180px
    }

    .blog-content {
        padding: 18px
    }

    .blog-content h3 {
        font-size: 1rem
    }

    /* --- CTA --- */
    .cta-bg {
        height: 200px;
        border-radius: 0 0 30px 30px
    }

    .cta-image img {
        width: 200px;
        height: 200px
    }

    .cta-image-circle {
        width: 220px;
        height: 220px
    }

    /* --- FAQ --- */
    .faq-question {
        padding: 14px 16px
    }

    .faq-question h4 {
        font-size: .85rem
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: .75rem
    }

    /* --- Contact --- */
    .contact-sidebar {
        padding: 24px 20px
    }

    .contact-info-item {
        margin-bottom: 28px
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        font-size: .95rem
    }

    .contact-info-item h4 {
        font-size: .95rem
    }

    .contact-info-item p {
        font-size: .82rem
    }

    /* --- Footer --- */
    .footer {
        padding-top: 40px
    }

    .footer-logo {
        font-size: 1.6rem
    }

    .footer-logo i {
        font-size: 1.8rem
    }

    .footer-about p {
        font-size: .88rem
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 16px
    }

    .footer-col ul li {
        margin-bottom: 14px
    }

    .footer-col ul li a {
        font-size: .9rem
    }

    .footer-gallery img {
        height: 60px;
        border-radius: 8px
    }

    .footer-bottom-links a {
        font-size: .82rem
    }

    .footer-bottom p {
        font-size: .82rem
    }

    /* --- Video section --- */
    .video-section-img {
        height: 200px
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem
    }

    /* --- Clients --- */
    .clients-grid {
        gap: 20px
    }

    .client-logo {
        font-size: .95rem
    }

    /* --- Buttons --- */
    .btn {
        padding: 11px 22px;
        font-size: .85rem
    }

    /* --- Nav drawer --- */
    .nav {
        width: 260px;
        padding: 80px 24px 24px
    }

    .nav-link {
        font-size: .95rem;
        padding: 14px 0
    }

    /* Blue wave section */
    .blue-wave-section {
        padding: 50px 0
    }

    /* Howwework */
    .howwework-bg {
        height: 280px
    }
}

/* ===== ALTERNATING PRODUCT CARDS ===== */
.product-alternating-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.product-card-alt {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
    transition: var(--transition);
}

.product-card-alt:last-child {
    margin-bottom: 0;
}

.product-card-alt:nth-child(even) {
    flex-direction: row-reverse;
}

.product-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-alt:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-content {
    flex: 1.2;
    padding: 50px;
}

.product-card-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.product-card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 500;
}

.product-highlights li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== MODERN SERVICE BOXES ===== */
.our-services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-feature-box {
    padding: 45px 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-feature-box:hover::before {
    transform: scaleX(1);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-feature-box:hover .service-feature-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-feature-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-feature-box p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .product-card-alt {
        flex-direction: column !important;
        gap: 0;
    }

    .product-card-img {
        width: 100%;
        height: 300px;
    }

    .product-card-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MAP SECTION ===== */
.map-section {
    padding-bottom: 80px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
    line-height: 0;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.map-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25);
}

.map-wrapper iframe {
    transition: var(--transition);
}

/* ===== BRAND CARD VIBRANT STYLES ===== */
.brand-services-grid .brand-card {
    width: 100% !important;
    height: auto !important;
    min-height: 100px;
}

.brand-card {
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
}

.brand-card h4 {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-card .service-feature-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-card:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Vibrant Color Variations with Matching Shadows */
.brand-v1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
}

.brand-v2 {
    background: linear-gradient(135deg, #2af598 0%, #009efd 100%) !important;
    box-shadow: 0 10px 25px rgba(42, 245, 152, 0.4) !important;
}

.brand-v3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4) !important;
}

.brand-v4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4) !important;
}

.brand-v5 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    box-shadow: 0 10px 25px rgba(67, 233, 123, 0.4) !important;
}

.brand-v6 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
    box-shadow: 0 10px 25px rgba(250, 112, 154, 0.4) !important;
}

.brand-v7 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%) !important;
    box-shadow: 0 10px 25px rgba(48, 207, 208, 0.4) !important;
}

.brand-v8 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%) !important;
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.4) !important;
}

.brand-v9 {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%) !important;
    box-shadow: 0 10px 25px rgba(255, 8, 68, 0.4) !important;
}

.brand-v10 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.4) !important;
}

.brand-v11 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%) !important;
    box-shadow: 0 10px 25px rgba(161, 140, 209, 0.4) !important;
}

.brand-v12 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%) !important;
    box-shadow: 0 10px 25px rgba(132, 250, 176, 0.4) !important;
}

.brand-v13 {
    background: linear-gradient(135deg, #209cff 0%, #68e0cf 100%) !important;
    box-shadow: 0 10px 25px rgba(32, 156, 255, 0.4) !important;
}

.brand-v14 {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%) !important;
    box-shadow: 0 10px 25px rgba(246, 211, 101, 0.4) !important;
}

.brand-card:hover.brand-v1 {
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6) !important;
}

.brand-card:hover.brand-v2 {
    box-shadow: 0 20px 40px rgba(42, 245, 152, 0.6) !important;
}

.brand-card:hover.brand-v3 {
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.6) !important;
}

.brand-card:hover.brand-v4 {
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.6) !important;
}

.brand-card:hover.brand-v5 {
    box-shadow: 0 20px 40px rgba(67, 233, 123, 0.6) !important;
}

.brand-card:hover.brand-v6 {
    box-shadow: 0 20px 40px rgba(250, 112, 154, 0.6) !important;
}

.brand-card:hover.brand-v7 {
    box-shadow: 0 20px 40px rgba(48, 207, 208, 0.6) !important;
}

.brand-card:hover.brand-v8 {
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.6) !important;
}

.brand-card:hover.brand-v9 {
    box-shadow: 0 20px 40px rgba(255, 8, 68, 0.6) !important;
}

.brand-card:hover.brand-v10 {
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.6) !important;
}

.brand-card:hover.brand-v11 {
    box-shadow: 0 20px 40px rgba(161, 140, 209, 0.6) !important;
}

.brand-card:hover.brand-v12 {
    box-shadow: 0 20px 40px rgba(132, 250, 176, 0.6) !important;
}

.brand-card:hover.brand-v13 {
    box-shadow: 0 20px 40px rgba(32, 156, 255, 0.6) !important;
}

.brand-card:hover.brand-v14 {
    box-shadow: 0 20px 40px rgba(246, 211, 101, 0.6) !important;
}

/* Floating Buttons Container */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-float,
.call-float {
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: static;
    /* Let container handle positioning */
}

.whatsapp-float {
    background-color: #25d366;
}

.call-float {
    background-color: #3b82f6;
    /* Premium Blue */
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

.call-float:hover {
    background-color: #2563eb;
    transform: scale(1.1);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .whatsapp-float,
    .call-float {
        width: 65px;
        height: 65px;
        font-size: 35px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px !important;
        padding-bottom: 10px;
    }
}

/* Categories We Deal In - Uiverse Card */
.we-deal-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.we-deal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 40px;
}

.card {
    --card-color: #0080ff;
    --blub-color: #52d4eb;
    position: relative;
    user-select: none;
    background: transparent;
    width: 220px;
}

@keyframes keyframes-rotate-blubs {
    0% {
        transform: translate(10px) rotate(360deg);
    }

    50% {
        transform: translate(-5px, 10px) rotate(180deg);
    }

    100% {
        transform: translate(10px) rotate(0deg);
    }
}

.card span {
    width: 100px;
    height: 100px;
    position: absolute;
    background: linear-gradient(0deg, transparent, var(--blub-color));
    border-radius: 100%;
    opacity: 0.5;
    animation: keyframes-rotate-blubs 4s infinite linear;
}

.card span:nth-child(1) {
    top: -5%;
    left: -5%;
    width: 60px;
    height: 60px;
    animation-delay: .1s;
    opacity: 0.3;
}

.card span:nth-child(2) {
    top: 60%;
    left: -20%;
    width: 80px;
    height: 80px;
    animation-delay: .2s;
    opacity: 0.3;
}

.card span:nth-child(3) {
    top: 10%;
    left: 60%;
    animation-delay: .3s;
    opacity: 0.6;
}

.card span:nth-child(4) {
    top: 70%;
    left: 50%;
    width: 90px;
    height: 90px;
    animation-delay: .4s;
    opacity: 0.4;
}

.card>div {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    outline: 1px solid var(--card-color);
    color: var(--card-color);
    width: 100%;
    height: 280px;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.4);
}

.card>div .check {
    fill: var(--card-color);
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background: #fff;
    border-radius: 50%;
}

.card>div strong {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

.card>div p {
    font-size: 0.85rem;
    text-align: center;
    margin: 10px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.card>div hr {
    border: none;
    border-top: 1px solid var(--card-color);
    opacity: .5;
    margin: 10px 0;
}

.card a {
    text-decoration: none;
    display: block;
}

.card>div button {
    background-color: transparent;
    color: var(--card-color);
    border: none;
    outline: 1px solid var(--card-color);
    border-radius: 1rem;
    padding: .6rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    gap: .2em;
    width: 100%;
}

.card>div button .arrow {
    width: 0px;
    height: 20px;
    fill: var(--blub-color);
    transform: scale(0);
    transition: .3s;
}

.card>div button:hover .arrow {
    width: 20px;
    margin-left: .5em;
    transform: scale(1);
}

.card>div button:hover {
    background-color: var(--card-color);
    color: #fff;
    cursor: pointer;
}

.card>div button:hover .arrow {
    fill: #fff;
}

@media(max-width: 768px) {
    .we-deal-grid {
        gap: 20px;
    }

    .card {
        width: 160px;
    }

    .card>div {
        height: 250px;
        padding: 1rem;
    }

    .card>div strong {
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .card {
        width: 100%;
        max-width: 280px;
    }

    .card>div {
        height: 220px;
    }
}

/* ===== RESPONSIVE CTA BUTTON ANIMATIONS ===== */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.btn-white-pulse {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: pulse-white 2.5s infinite;
}

.btn-white-pulse:hover {
    transform: translateY(-5px) scale(1.05);
    background: #f8fafc;
    color: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
    animation: none;
}

.product-card-item .enquire-btn {
    animation: pulse-green 2.5s infinite;
}

.product-card-item .enquire-btn:hover {
    animation: none !important;
}