/* 
  Base Styles & Variables 
*/
:root {
    /* Color Palette */
    --primary-color: #2C4C3B;
    /* Deep Forest Green */
    --primary-dark: #1E3628;
    --primary-light: #46725B;
    --secondary-color: #C17767;
    /* Terracotta */
    --accent-color: #D4AF37;
    /* Warm Gold */
    --bg-color: #F9F6F0;
    /* Soft Cream */
    --surface-color: #FFFFFF;
    --text-main: #2D3748;
    /* Dark Charcoal */
    --text-muted: #718096;
    /* Muted Olive/Gray */
    --whatsapp-color: #25D366;
    --whatsapp-dark: #1EBE5D;

    /* UI Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(44, 76, 59, 0.05);
    --shadow-md: 0 10px 30px rgba(44, 76, 59, 0.08);
    --shadow-hover: 0 20px 40px rgba(44, 76, 59, 0.12);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Serif font for elegant headings */
h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 
  Typography 
*/
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* 
  Buttons 
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    /* Pill shape for premium feel */
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    font-family: inherit;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--surface-color);
    box-shadow: 0 8px 20px rgba(44, 76, 59, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(44, 76, 59, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--surface-color);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.wa-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* 
  Animations & Utilities 
*/
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-spacing {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

/* 
  Header (Glassmorphism)
*/
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-color);
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    margin-left: 2.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-main);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* 
  Hero Section (Modern Split / Overlay)
*/
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, #E9E4D4 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
}

.hero-text h1 span {
    color: var(--secondary-color);
    display: block;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* 
  Features Section 
*/
.features {
    background-color: var(--surface-color);
    position: relative;
    margin-top: -50px;
    z-index: 10;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 5rem 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(44, 76, 59, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--surface-color);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* 
  Products Section 
*/
.products {
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.product-image {
    height: 320px;
    width: 100%;
    overflow: hidden;
    background-color: #F4F1EA;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.view-details-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    background: var(--bg-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-light);
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* 
  About Section 
*/
.about {
    background-color: var(--surface-color);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    transform: translate(20px, 20px);
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* 
  Modal Styling 
*/
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 76, 59, 0.4);
    /* Greenish tint overlay */
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--surface-color);
    border-radius: var(--border-radius-lg);
    width: 95%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.close-modal:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }

    .modal-image {
        width: 45%;
    }

    .modal-info {
        width: 55%;
    }
}

.modal-image {
    background-color: #F4F1EA;
    position: relative;
    min-height: 300px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.modal-info h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.modal-info .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.modal-info .desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.modal-options label {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    display: block;
}

/* Color Pills */
.color-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.color-pill {
    padding: 10px 20px;
    background-color: var(--bg-color);
    border: 1px solid #E0D6C8;
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.color-pill.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.color-pill:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 
  Page Title (Products Page)
*/
.page-title-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero_bg.png') center/cover;
    opacity: 0.1;
}

.page-title-section .container {
    position: relative;
    z-index: 1;
}

.page-title-section h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-title-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-products {
    padding-top: 5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 5rem;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1px solid #E0D6C8;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.page-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(44, 76, 59, 0.3);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 
  Footer 
*/
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.floating-wa img {
    width: 35px;
    height: 35px;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--whatsapp-dark);
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-image {
        order: -1;
        height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 3rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: var(--shadow-md);
    }

    .nav.open {
        height: calc(100vh - 70px);
    }

    .nav a {
        margin: 1.5rem 0;
        font-size: 1.5rem;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .modal-content {
        height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        min-height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .why-choose-list {
        padding: 0 1rem;
    }
    
    .why-choose-list li {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Image Switch Animation for Modal */
.modal-image {
    overflow: hidden;
}

.modal-image img {
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, filter 0.4s ease;
}

.modal-image img.slide-out {
    transform: scale(1.1) translateX(-20px);
    opacity: 0;
}

.modal-image img.slide-in {
    transform: scale(1.1) translateX(20px);
    opacity: 0;
    transition: none;
}

.modal-image img.slide-in-active {
    transform: scale(1) translateX(0);
    opacity: 1;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, filter 0.4s ease;
}

/* Modern Contact Card */
.contact-section {
    background-color: var(--bg-color);
}

.contact-card-modern {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-side {
    background: var(--primary-color);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-side p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-action-side {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--surface-color);
}

.contact-action-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-action-side p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-card-modern {
        grid-template-columns: 1fr;
    }

    .contact-info-side,
    .contact-action-side {
        padding: 3rem 2rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 3rem;
    margin-bottom: 6rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.page-btn:hover:not(:disabled) {
    background: var(--bg-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hide color options from product details */
.product-options.modal-options {
    display: none !important;
}

/* Hide prices from product cards and modal */
.product-price,
#modal-price {
    display: none !important;
}

/* Align View Details button to the bottom of every card */
.product-card .view-details-btn {
    margin-top: auto !important;
}

/* Ensure a minimum gap exists between the title and the button */
.product-info {
    gap: 1.25rem;
}

/* --- Brand Story New Sections --- */
.beliefs-section {
    background-color: var(--bg-color);
    padding: 1rem 0;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .beliefs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.belief-item {
    background-color: #E9E4D4;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(44, 76, 59, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.belief-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.belief-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.belief-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.process-section {
    background-color: var(--bg-color);
    padding: 3rem 0;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: process-counter;
}

.process-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.process-list-item::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.process-list-item p {
    margin-top: 8px;
    font-size: 1.15rem;
}

.why-choose-section {
    background-color: var(--surface-color);
    padding: 3rem 0;
}

.why-choose-list {
    list-style: none;
    max-width: 800px;
    margin: 3rem auto 0;
}

.why-choose-list li {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-choose-list li strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 5px;
}

.why-choose-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: -2px;
}

.split-text-section {
    background-color: var(--bg-color);
    padding: 3rem 0;
}

.split-text-section.bg-white {
    background-color: var(--surface-color);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 550px;
}

.split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-image-wrapper:hover img {
    transform: scale(1.05);
}

.split-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
    }
}

.dark-banner {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/festive_diya_1787810863695.jpg') center/cover;
    opacity: 0.25;
    z-index: 0;
}

.dark-banner .container {
    position: relative;
    z-index: 1;
}

.dark-banner h2 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dark-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 300;
}

.brand-narrative {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.brand-narrative h2 {
    font-size: 3rem;
    color: var(--primary-dark);
}

.brand-narrative p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}