/*=============================
  Google Font
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/*=============================
  CSS Variables
==============================*/
:root{

    --primary:#0D5C35;
    --secondary:#F28B2D;
    --cream:#FFF8EF;
    --brown:#5B3824;
    --gold:#C9A35A;
    --dark:#222;
    --white:#ffffff;
    --gray:#777;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/*=============================
 Reset
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--dark);
    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*=============================
 Buttons
==============================*/

.btn{

    display:inline-block;
    padding:15px 38px;
    background:var(--secondary);
    color:#fff;
    border-radius:50px;
    transition:.35s;
    font-weight:600;

}

.btn:hover{

    background:var(--primary);
    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;
    padding:15px 38px;
    border:2px solid white;
    color:white;
    border-radius:50px;
    transition:.35s;
    margin-left:15px;

}

.btn-outline:hover{

    background:white;
    color:var(--primary);

}

/*=============================
    Top Announcement Bar
==============================*/

.top-bar {
    background: linear-gradient(90deg, #094025, #0d5c35);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-left i {
    color: var(--secondary);
    margin-right: 5px;
}

.bar-divider {
    color: rgba(255, 255, 255, 0.3);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: var(--secondary);
}


/*=============================
    Header Navigation
==============================*/

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(13, 92, 53, 0.08);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 170px;
    display: block;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #2D3748;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.btn-whatsapp-nav {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: var(--white);
}

.menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2D3748;
}


/*=============================
    Hero Slider Carousel Section
==============================*/

.hero-slider-section {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(11, 69, 39, 0.84) 0%, rgba(19, 115, 70, 0.76) 50%, rgba(11, 69, 39, 0.88) 100%), url('../images/bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides-wrapper {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    padding: 85px 0 110px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: relative;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 50%, rgba(242, 139, 45, 0.22) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 40%, rgba(0, 0, 0, 0.22) 100%);
    pointer-events: none;
}

.hero-brush-edge {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 6;
    pointer-events: none;
}

.hero-brush-edge svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

.hero-brush-edge svg path {
    fill: var(--cream);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-left {
    width: 52%;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-hero-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.btn-hero-wa:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-right {
    width: 44%;
}

.hero-img-box {
    position: relative;
    text-align: center;
}

.hero-img-box img {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.hero-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    border: 1px solid rgba(242, 139, 45, 0.25);
}

.hero-float-badge i {
    color: var(--secondary);
}

.h-badge-1 {
    top: 20px;
    left: -10px;
    animation: float 4s ease-in-out infinite;
}

.h-badge-2 {
    bottom: 30px;
    right: -10px;
    animation: float 4s ease-in-out infinite 2s;
}

/* Hero Slider Controls */
.hero-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.hero-slider-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrows button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--secondary);
    width: 38px;
    border-radius: 20px;
}

/* Scroll */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 26px;
    animation: down 1.8s infinite;
    z-index: 10;
}

/*=============================
 Animations
==============================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

@keyframes down{

0%{

transform:translate(-50%,0);

opacity:1;

}

50%{

transform:translate(-50%,10px);

}

100%{

transform:translate(-50%,0);

}

}

/*=============================
 Section Common
==============================*/

section{

    padding:100px 0;

}

h2{

    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    color:var(--primary);
    margin-bottom:20px;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}


/*=============================
Scroll To Top
=============================*/

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#F28B2D;

color:#fff;

font-size:22px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.scroll-top.show{

opacity:1;

visibility:visible;

}

.scroll-top:hover{

background:#0D5C35;

transform:translateY(-5px);

}



/* Ripple */

.btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

width:20px;

height:20px;

background:rgba(255,255,255,.5);

border-radius:50%;

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(18);

opacity:0;

}

}

/*=================================
    Slider Buttons
=================================*/

.slider-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:40px;

}

.slider-buttons button{

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#F28B2D;

color:#fff;

font-size:24px;

cursor:pointer;

transition:.3s;

}

.slider-buttons button:hover{

background:#0D5C35;

transform:translateY(-5px);

}

/*=====================================
        Counter Section Banner (Full Width)
======================================*/

.counter-section {
    padding: 70px 0;
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 92, 53, 0.95), rgba(9, 64, 37, 0.98)), url('../images/counter-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(201, 163, 90, 0.35);
    border-bottom: 1px solid rgba(201, 163, 90, 0.35);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 -10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.counter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 139, 45, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-box {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(242, 139, 45, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #e07a1e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
    box-shadow: 0 10px 20px rgba(242, 139, 45, 0.35);
    transition: transform 0.4s ease;
}

.counter-box:hover .counter-icon {
    transform: scale(1.1) rotate(8deg);
}

.counter {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.counter-box p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}


/*=====================================
            Benefits Section
======================================*/

.benefits {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sub-title i {
    font-size: 16px;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 35px;
    align-items: center;
    margin-top: 50px;
}

.benefits-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 92, 53, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 92, 53, 0.12);
    border-color: rgba(242, 139, 45, 0.35);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon-box {
    min-width: 55px;
    height: 55px;
    background: rgba(13, 92, 53, 0.08);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.benefit-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Center Showcase Banner Image */
.benefits-banner-showcase {
    position: relative;
    text-align: center;
}

.benefits-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(13, 92, 53, 0.18);
    border: 8px solid var(--white);
}

.benefits-img-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.benefits-banner-showcase:hover img {
    transform: scale(1.06);
}

.benefit-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    border: 1px solid rgba(242, 139, 45, 0.25);
}

.benefit-badge i {
    color: var(--secondary);
}

.badge-top {
    top: 22px;
    right: 22px;
    animation: float 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 22px;
    left: 22px;
    animation: float 4s ease-in-out infinite 2s;
}

/* Feature Ribbon Banner */
.benefits-feature-ribbon {
    margin-top: 55px;
    background: linear-gradient(135deg, var(--primary), #084226);
    border-radius: 22px;
    padding: 24px 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 18px 40px rgba(13, 92, 53, 0.22);
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.ribbon-item i {
    color: var(--secondary);
    font-size: 20px;
}

.ribbon-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}


/*=====================================
        Happy Customers (Testimonials)
======================================*/

.testimonials {
    padding: 100px 0;
    background: #FFF8EF;
    position: relative;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.testimonials-slider-container {
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(13, 92, 53, 0.07);
    border: 1px solid rgba(13, 92, 53, 0.08);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.97);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 35px;
    right: 40px;
    font-size: 50px;
    color: rgba(242, 139, 45, 0.15);
}

.testimonial-card .stars {
    color: #f1c40f;
    font-size: 18px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.customer-profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.customer-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(242, 139, 45, 0.25);
}

.customer-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.customer-info .location {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.verified-buyer-badge {
    font-size: 12px;
    font-weight: 600;
    color: #27ae60;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.slider-controls button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(242, 139, 45, 0.3);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(13, 92, 53, 0.3);
}


/*=====================================
     FAQ Section (2 Column Design)
======================================*/

.faq {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.faq-grid-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.section-title-left {
    text-align: left;
    margin-bottom: 35px;
}

.faq-box {
    max-width: 100%;
    margin: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 92, 53, 0.08);
    transition: all 0.35s ease;
}

.faq-item:hover {
    border-color: rgba(242, 139, 45, 0.35);
    box-shadow: 0 15px 35px rgba(13, 92, 53, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    text-align: left;
    outline: none;
}

.faq-question .icon {
    font-size: 16px;
    color: var(--secondary);
    transition: transform 0.4s ease;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(242, 139, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    background: var(--secondary);
    color: var(--white);
}

.faq-answer {
    padding: 0 28px;
}

.faq-answer p {
    padding: 0 0 22px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

/* FAQ Image Column */
.faq-image-col {
    position: relative;
}

.faq-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(13, 92, 53, 0.15);
    border: 8px solid var(--white);
}

.faq-img-container img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.faq-image-col:hover img {
    transform: scale(1.05);
}

.faq-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    border: 1px solid rgba(242, 139, 45, 0.25);
}

.faq-float-badge i {
    color: var(--secondary);
}

.f-badge-top {
    top: 25px;
    left: 25px;
    animation: float 4s ease-in-out infinite;
}

.f-badge-bottom {
    bottom: 25px;
    right: 25px;
    animation: float 4s ease-in-out infinite 2s;
}


/*=====================================
            Footer Section
======================================*/

.footer {
    background: linear-gradient(135deg, #094025, #052616);
    color: var(--white);
    padding: 90px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 70px;
}

.footer-logo img {
    width: 170px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.35s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary);
    font-size: 16px;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-promise {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.f-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom strong {
    color: var(--gold);
    font-weight: 700;
}


/*=====================================
    Color Theme Switcher Widget
======================================*/

.theme-switcher-widget {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.theme-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(30deg);
    background: var(--secondary);
    color: var(--white);
}

.theme-menu {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.theme-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.theme-menu h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 6px;
}

.theme-option:hover,
.theme-option.active {
    background: var(--cream);
    color: var(--primary);
}

.theme-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dot-emerald {
    background: linear-gradient(135deg, #0D5C35, #157347);
}

.dot-gold {
    background: linear-gradient(135deg, #5B3824, #D4AF37);
}

.dot-sage {
    background: linear-gradient(135deg, #2C5E43, #E07A1E);
}

/* Theme Variant Classes */
body.theme-gold {
    --primary: #5B3824;
    --secondary: #D4AF37;
    --cream: #FFFDF9;
}

body.theme-gold .hero-slider-section {
    background: linear-gradient(135deg, #4A2E1D 0%, #7A4B31 50%, #3D2517 100%);
}

body.theme-gold .top-bar {
    background: #4A2E1D;
}

body.theme-sage {
    --primary: #2C5E43;
    --secondary: #E07A1E;
    --cream: #F4F7F4;
}

body.theme-sage .hero-slider-section {
    background: linear-gradient(135deg, #1C402E 0%, #2E6B4B 50%, #183828 100%);
}

body.theme-sage .top-bar {
    background: #1C402E;
}

/*============================
ABOUT
=============================*/

.about{
    padding:100px 0;
    background:#FFF8EF;
}

.about-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;

}

.about-content{

    flex:1;

}

.about-content h2{

    font-size:58px;
    margin:20px 0;

}

.about-content p{

    font-size:18px;
    line-height:1.9;
    color:#666;

}

.about-features{

    margin:30px 0;

}

.feature{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;

}

.feature i{

    color:#F28B2D;

    font-size:20px;

}


/*=====================================
    Traditional Bilona Process Section
======================================*/

.process {
    padding: 100px 0;
    background: #FFF8EF;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 92, 53, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 92, 53, 0.12);
    border-color: rgba(242, 139, 45, 0.3);
}

.process-step-card:hover::before {
    opacity: 1;
}

.step-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    font-weight: 800;
    color: rgba(13, 92, 53, 0.12);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    transition: color 0.3s ease;
}

.process-step-card:hover .step-badge {
    color: var(--secondary);
}

.step-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(13, 92, 53, 0.08), rgba(242, 139, 45, 0.1));
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.process-step-card:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(13, 92, 53, 0.25);
}

.process-step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}


/*=====================================
        Premium Product Section
======================================*/

.products {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 35px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(13, 92, 53, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

/* Left Photo Gallery */
.product-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-product-img-box {
    position: relative;
    background: radial-gradient(circle, rgba(255, 248, 239, 1) 0%, rgba(245, 235, 220, 0.7) 100%);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(13, 92, 53, 0.08);
    overflow: hidden;
}

.main-product-img-box img {
    max-height: 380px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    transition: opacity 0.25s ease, transform 0.5s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
}

.main-product-img-box:hover img {
    transform: scale(1.05);
}

.product-badge-sale {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(242, 139, 45, 0.3);
}

.product-badge-rating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(242, 139, 45, 0.2);
}

.product-badge-rating i {
    color: #f39c12;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumb-item {
    width: 85px;
    height: 85px;
    border-radius: 18px;
    background: #FFF8EF;
    border: 2px solid transparent;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(242, 139, 45, 0.2);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Right Product Details */
.product-details-side {
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 12px;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #f1c40f;
    font-size: 16px;
}

.rating-score {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.review-count {
    color: #777;
    font-size: 13px;
}

.product-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(13, 92, 53, 0.05);
    padding: 16px 24px;
    border-radius: 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(13, 92, 53, 0.1);
}

.current-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-pill {
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
}

.tax-info {
    font-size: 12px;
    color: #777;
    margin-left: auto;
}

.product-short-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Package Size Selector */
.size-selector-wrap {
    margin-bottom: 25px;
}

.selector-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.size-btn {
    background: var(--cream);
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
}

.size-vol {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
}

.size-tag {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
    font-weight: 500;
}

.size-btn.active,
.size-btn:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(242, 139, 45, 0.18);
}

.size-btn.active .size-vol {
    color: var(--secondary);
}

/* Highlights Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.p-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF8EF;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(13, 92, 53, 0.06);
}

.p-feature-item i {
    color: var(--secondary);
    font-size: 16px;
}

/* CTA Row */
.product-cta-row {
    display: flex;
    margin-bottom: 25px;
}

.btn-buy-now {
    width: 100%;
    text-align: center;
    padding: 18px 30px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.btn-buy-now i {
    font-size: 22px;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

/* Trust Ribbon */
.trust-guarantee-ribbon {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    gap: 15px;
}

.trust-item {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--primary);
}