/* ============================================================
   RIGOPURE EDIBLE OIL - Main Stylesheet
   Color Palette:
     Primary: #2e7d32 (Deep Green)
     Secondary: #c8a951 (Gold)
     Accent: #8d6e63 (Light Brown)
     Background: #ffffff
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --primary: #3F4F23;
    --primary-dark: #3F4F23;
    --primary-light: #4caf50;
    --secondary: #c8a951;
    --secondary-dark: #a07830;
    --accent: #8d6e63;
    --white: #ffffff;
    --whatsapp: #25d366;
    /* --off-white: #f9f6f0; */
    --off-white: #f6f0e5;
    --off-primary: #41502845;
    --light-gray: #f4f4f4;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #777;
    --border: #e0d8cc;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility ---------- */
.section-padding {
    padding: 90px 0;
}

.bg-off-white {
    background: var(--off-white);
}

.bg-off-primary {
    background: var(--off-primary);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-gold {
    color: var(--secondary);
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.28);
}

.btn-gold {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.30);
}

.btn-green {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-green:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.30);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border: 2px solid var(--whatsapp);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 81, 0.30);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-green:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-whatsapp {
    background: transparent;
    color: var(--whatsapp);
    border: 2px solid var(--whatsapp);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- TOPBAR ---------- */
.topbar {
    background: var(--primary);
    padding: 5px 0;
    font-size: 14px;
}

/* LEFT SIDE */
.topbar .topbar-contact {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar .topbar-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.topbar .topbar-contact li i {
    color: var(--secondary);
}

/* RIGHT SIDE */
.topbar .topbar-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar .topbar-social li a {
    color: #fff;
    transition: 0.3s;
}

.topbar .topbar-social li a:hover {
    color: var(--secondary);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .topbar .row {
        flex-direction: column;
        text-align: center;
    }

    .topbar .topbar-contact,
    .topbar .topbar-social {
        justify-content: center;
        margin-bottom: 5px;
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    padding: 6px 0;
    transition: var(--transition);
    z-index: 1200;
    /* Higher than overlay */
}

.navbar-brand img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand img:hover {
    transform: scale(1.04);
}

.navbar .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary) !important;
}

/* Proper Navbar Toggler */
.navbar-toggler {
    border: none !important;
    padding: 10px !important;
    box-shadow: none !important;
    border-radius: 50%;
    transition: background-color 0.2s;
    margin-right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Custom Toggler Hamburger */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: #fff !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1300;
        /* Higher than navbar and overlay */
        padding: 0;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
        border-right: 1px solid var(--border);
    }

    .navbar-collapse.show {
        transform: translateX(300px);
    }

    /* Fixed Header in Sidebar */
    .navbar-collapse::before {
        content: 'Rigopure Edible Oil';
        display: block;
        padding: 24px 20px 10px;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--primary-dark);
        border-bottom: 1px solid var(--border);
        margin-bottom: 15px;
    }

    .navbar-nav {
        margin-top: 0;
        width: 100%;
        padding: 0 8px;
    }

    .navbar-nav .nav-item {
        opacity: 1;
        /* reset from previous staggered animation */
        transform: none;
        margin-bottom: 2px;
    }

    .navbar .nav-link {
        font-size: 0.95rem;
        margin-bottom: 0;
        padding: 12px 20px !important;
        font-weight: 500;
        color: var(--text-dark) !important;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.2s;
        text-align: left;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background-color: #f1f5f1;
        color: var(--primary) !important;
    }

    .navbar .nav-link.active {
        background-color: #e8f5e9;
        font-weight: 600;
    }

    /* Add icons to nav links in sidebar (optional but looks like gmail) */
    .navbar-nav .nav-item:nth-child(1) .nav-link::before {
        content: '\f015';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .navbar-nav .nav-item:nth-child(2) .nav-link::before {
        content: '\f05a';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .navbar-nav .nav-item:nth-child(3) .nav-link::before {
        content: '\f07a';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .navbar-nav .nav-item:nth-child(4) .nav-link::before {
        content: '\f0ad';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .navbar-nav .nav-item:nth-child(5) .nav-link::before {
        content: '\f095';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    /* Order Now Button in Sidebar */
    .navbar-nav .nav-item .btn-green {
        display: flex !important;
        width: calc(100% - 16px);
        margin: 15px 8px 10px !important;
        justify-content: center;
        padding: 14px !important;
        font-size: 1rem !important;
        border-radius: 50px !important;
        background: var(--primary) !important;
        color: #fff !important;
        box-shadow: 0 4px 10px rgba(63, 79, 35, 0.2);
    }

    .navbar-nav .nav-item .btn-green i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

    .mobile-menu-footer {
        margin-top: auto;
        padding: 24px;
        background: #fdfdfd;
        border-top: 1px solid var(--border);
        opacity: 1;
    }

    /* Backdrop Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1100;
        /* Lower than navbar */
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ---------- HERO SLIDER ---------- */
/* Prevent slider stacking before initialization */
.hero-slider:not(.slick-initialized) .hero-slide:not(:first-child),
.secondary-image-slider:not(.slick-initialized) .image-slide:not(:first-child) {
    display: none;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    /* Ensure no margins or padding interrupt full width */
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: relative;
    /* min-height: 80vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    /* overrides slick display:block if needed */
    align-items: center;
    padding: 120px 0 80px;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add a dark overlay to ensure text is readable */
    background: linear-gradient(90deg, #3f4f2379 0%, #3f4f2353 10%, transparent 100%);
    z-index: 1;
}

.slider-mobile-img {
    display: none;
    margin-bottom: 10px;
}

.slider-mobile-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .hero-badge {
        margin-bottom: 0px !important;
        font-size: 11px !important;
        padding: 5px !important;
    }

    .slider-mobile-img img {
        width: 100%;
        max-width: 60%;
        height: auto;
        border-radius: var(--radius);
        display: block;
        margin: 0 auto;
    }

    .hero-slide {
        padding: 5px 0 20px 0 !important;
    }

    .hero-subtitle {
        margin-bottom: 10px !important;
    }

    .hero-slider .slick-dots {
        display: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .hero-badge {
        display: none;
    }

    .hero-subtitle {
        color: #8d6e63 !important;
    }

    .hero-slide {
        background-image: none !important;
        background-color: #c8a8516b;
        /* Fallback to primary brand color */
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-slide-overlay {
        background: none;
        /* remove gradient if backdrop is gone */
    }

    .slider-mobile-img {
        display: block;
    }

    .hero-title {
        text-align: center;
        font-size: 2.2rem;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider .d-flex {
        justify-content: center;
    }
}

/* Slick Customizations */
.hero-slider .slick-dots {
    bottom: 30px;
    z-index: 10;
}

.hero-slider .slick-dots li button:before {
    color: #fff;
    font-size: 14px;
    opacity: 0.5;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--secondary);
    opacity: 1;
}

/* Slick Arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .slick-prev i,
.hero-slider .slick-next i {
    font-size: 1.2rem;
}

/* Responsive arrows */
@media (max-width: 768px) {
    .hero-slider .slick-prev {
        left: 10px;
    }

    .hero-slider .slick-next {
        right: 10px;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 40px;
        height: 40px;
    }
}


/* ---------- SECONDARY IMAGE SLIDER ---------- */
.secondary-image-slider {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    padding: 0;
    margin: 0;
}

.secondary-image-slider .image-slide {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.secondary-image-slider .image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom transitions and arrows for secondary slider */
.secondary-image-slider .slick-prev,
.secondary-image-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.secondary-image-slider .slick-prev:hover,
.secondary-image-slider .slick-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.secondary-image-slider .slick-prev {
    left: 40px;
}

.secondary-image-slider .slick-next {
    right: 40px;
}

.secondary-image-slider .slick-prev::before,
.secondary-image-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    opacity: 1;
}

.secondary-image-slider .slick-prev::before {
    content: '\f053';
}

.secondary-image-slider .slick-next::before {
    content: '\f054';
}

.secondary-image-slider .slick-dots {
    bottom: 25px;
}

.secondary-image-slider .slick-dots li button:before {
    color: #fff;
    font-size: 12px;
}

.secondary-image-slider .slick-dots li.slick-active button:before {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .secondary-image-slider .image-slide {
        height: 100%;
        min-height: 100%;
    }

    .secondary-image-slider .slick-prev {
        left: 15px;
    }

    .secondary-image-slider .slick-next {
        right: 15px;
    }
}

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 168, 81, 0.774);
    border: 1px solid rgb(200, 168, 81);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.hero-stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.hero-stat-item .stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}



.hero-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card .icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.hero-floating-card.card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
    background: var(--white);
}

.about-icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.founder-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 12rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border: 3px solid rgba(200, 169, 81, 0.4);
}

.founder-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.92);
}

.founder-name {
    font-weight: 700;
    font-size: 1rem;
}

.founder-title {
    font-size: 0.82rem;
    color: var(--secondary);
    margin-top: 2px;
}

/* ---------- PRODUCTS SECTION ---------- */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .card-img-wrap {
    background: linear-gradient(135deg, #f0f7f0, #fdf8ee);
    /* height: 220px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-card .card-body {
    padding: 24px;
}

.product-card .card-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-card .card-text {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.product-price {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--secondary-dark);
    display: inline-block;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-tag {
    background: rgba(46, 125, 50, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.pro-detail-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    color: var(--primary-dark);
}

/* ---------- WHY CHOOSE US ---------- */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 125, 50, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-img {
    padding-bottom: 20px;
}

.feature-img img {
    width: 90px;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
}

.feature-card h5 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

/* ---------- PURITY HIGHLIGHTS ---------- */
.purity-highlights {
    background: linear-gradient(to bottom, #fff, var(--off-white));
}

.purity-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.purity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(1);
    transition: var(--transition);
    transform-origin: left;
}

.purity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.purity-card:hover::before {
    transform: scaleX(1);
}

.purity-icon {
    width: 85px;
    height: 85px;
    background: var(--off-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.purity-card:hover .purity-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

.purity-card h4 {
    font-size: 1.45rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.purity-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- PRODUCT GALLERY ---------- */
.product-gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 79, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-img img {
        width: 70px;
    }

    .feature-card {
        padding: 20px 10px;
    }
}

/* ---------- SERVICES SECTION ---------- */
.service-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.gujarati-text {
    font-size: 0.8rem;
    color: var(--secondary-dark);
    font-style: italic;
    margin-top: 4px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-dark) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

/* ---------- FOOTER ---------- */
footer {
    background: #0f1f10;
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

footer h5 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

footer .footer-brand img {
    height: 80px;
    margin-bottom: 16px;
}

footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--secondary);
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-item .text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom span,
.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin-bottom: 0;
}



@media (max-width: 991px) {
    footer {
        padding: 60px 0 0;
        text-align: center;
    }

    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    footer .footer-brand img {
        margin: 0 auto 20px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 24px;
    }

    .footer-contact-item .icon {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    footer .col-lg-3 {
        margin-bottom: 40px;
    }
}

/* ---------- WHATSAPP FLOATING BTN ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: var(--whatsapp);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
    color: #fff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.breadcrumb {
    justify-content: center;
    margin-top: 16px;
}

.breadcrumb-item a {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- ABOUT PAGE ---------- */
.mission-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
    height: 100%;
}

.mission-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.mission-card h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 11px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

/* ---------- PRODUCTS PAGE ---------- */
.filter-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-mid);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.detail-img-wrap {
    background: linear-gradient(135deg, #f0f7f0, #fdf8ee);
    border-radius: var(--radius);
    /* padding: 48px; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    overflow: hidden;
}

.detail-img-wrap img {
    /* max-height: 340px; */
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(46, 125, 50, 0.2));
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- SERVICES PAGE ---------- */
.service-detail-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 81, 0.3);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.service-detail-card h4 {
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.service-detail-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.service-gujarati {
    font-size: 0.9rem;
    color: var(--secondary-dark);
    font-style: italic;
    font-weight: 500;
    margin-top: 10px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 44px;
    color: #fff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ci-text .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ci-text .value {
    color: #fff;
    font-size: 0.93rem;
    margin-top: 3px;
    line-height: 1.6;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

/* ---------- DIVIDER ---------- */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0 36px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding: 110px 0 70px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 50px;
    }

    .hero-image-wrap .circle-bg {
        width: 360px;
        height: 360px;
    }

    .hero-image-wrap .circle-bg img {
        width: 270px;
        height: 270px;
    }

    .hero-floating-card.card-1 {
        left: 0;
    }

    .hero-floating-card.card-2 {
        right: 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }

    .hero-image-wrap .circle-bg {
        width: 280px;
        height: 280px;
    }

    .hero-image-wrap .circle-bg img {
        width: 210px;
        height: 210px;
    }

    .hero-floating-card {
        display: none;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 28px 22px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .founder-card {
        padding: 28px;
    }

    .cta-banner {
        padding: 60px 0;
    }
}

/* ---------- SLICK CAROUSEL CUSTOMIZATION ---------- */
.slick-prev:before,
.slick-next:before {
    color: var(--primary) !important;
    opacity: 0.85;
    transition: var(--transition);
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: var(--primary-dark);
    opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .scroll-top {
        bottom: 70px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .value-item {
        padding: 15px;
        gap: 12px;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}