/* ===== VARIABLES ===== */
:root {
    --primary: #0A2F1F;
    --primary-dark: #062015;
    --primary-glow: rgba(10, 47, 31, 0.4);
    --accent: #C9A53B;
    --accent-light: #E8DCC0;
    --accent-glow: rgba(201, 165, 59, 0.3);
    --cream: #F9F6EF;
    --dark: #1A1A1A;
    --gray: #4A4A4A;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.dark header {
    background: rgba(26, 26, 26, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
}

.dark .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.theme-toggle,
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.dark .theme-toggle,
.dark .mobile-menu-btn {
    color: var(--white);
}

.theme-toggle:hover,
.mobile-menu-btn:hover {
    color: var(--accent);
    transform: rotate(15deg);
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--light-gray);
    padding: 12px 0;
}

.dark .mobile-menu {
    background: rgba(26, 26, 26, 0.95);
    border-top-color: #333;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.dark .mobile-menu a {
    color: var(--white);
}

.mobile-menu a:hover {
    color: var(--accent);
    padding-left: 8px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background video,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 47, 31, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-pre-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-light);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    display: block;
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    z-index: 2;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: -100%; }
    100% { top: 100%; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 30px;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-header.light .section-title {
    -webkit-text-fill-color: var(--white);
    background: none;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== GRIDS ===== */
.grid-2,
.grid-3 {
    display: grid;
    gap: 60px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== CATEGORY CARDS ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 40px var(--primary-glow);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform 0.7s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.category-card p {
    color: var(--gray);
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .category-card {
        padding: 16px;
    }
    .category-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    color: var(--gray);
}

.stat-card-light {
    background: var(--cream);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.stat-card-light:hover {
    background: var(--accent-light);
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stats-mini div {
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

.stats-mini .stat-number {
    font-size: 1.5rem;
    display: inline;
    margin-right: 8px;
}

/* ===== QUOTE CARD ===== */
.quote-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 240px;
    border: 1px solid var(--glass-border);
}

.dark .quote-card {
    background: rgba(26, 26, 26, 0.9);
}

.quote-card p {
    font-size: 0.9rem;
    color: var(--dark);
    font-style: italic;
}

.quote-card span {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* ===== VISION MISSION VALUES ===== */
.vmv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.vmv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.vmv-card .icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.vmv-card .icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.vmv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.vmv-card p,
.vmv-card ul {
    color: rgba(255, 255, 255, 0.8);
}

.vmv-card li {
    list-style: none;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.vmv-card li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 40px var(--primary-glow);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
    flex: 1;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.size-tag {
    background: var(--accent-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.size-tag:hover {
    background: var(--accent);
    color: var(--white);
}

.product-enquire {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    margin-top: auto;
}

.product-enquire:hover {
    color: var(--accent);
    gap: 8px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .product-card h3 {
        font-size: 1.1rem;
    }
    .product-card-body {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
}

.filter-tab {
    padding: 8px 24px;
    border-radius: 40px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px var(--primary-glow);
}

@media (max-width: 768px) {
    .filter-tab {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}

/* ===== RECIPE CARDS ===== */
.recipes-swiper,
.updates-swiper {
    padding: 20px 0 50px;
    overflow: hidden;
}

.recipe-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 40px var(--primary-glow);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.7s;
}

.recipe-card:hover img {
    transform: scale(1.05);
}

.recipe-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recipe-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.recipe-meta {
    display: flex;
    gap: 16px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.recipe-card .btn {
    margin-top: auto;
}

/* ===== UPDATES BANNER ===== */
.update-banner {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.update-banner:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.update-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 40px var(--primary-glow);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.7s;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-read-more:hover {
    color: var(--accent);
    gap: 8px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-card-content {
        padding: 16px;
    }
    .blog-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.dark .faq-item {
    background: var(--dark);
    border-color: #333;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.dark .faq-question {
    color: var(--accent);
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    border: 1px solid var(--glass-border);
    width: 100%;
}

.dark .contact-card {
    background: var(--dark);
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.info-item i {
    font-size: 1.25rem;
    width: 24px;
    color: var(--accent);
}

.info-item a,
.info-item p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.dark .contact-form h2 {
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: transparent;
    color: var(--dark);
}

.dark .contact-form input,
.dark .contact-form select,
.dark .contact-form textarea {
    border-color: #333;
    color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.contact-form button {
    width: 100%;
}

.map-container {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Mobile improvements for contact page */
@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info, .contact-form {
        padding: 24px;
    }
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .info-item {
        font-size: 1rem;
        gap: 12px;
        margin-bottom: 18px;
    }
    .info-item i {
        font-size: 1.1rem;
        width: 20px;
    }
    .social-links a {
        width: 36px;
        height: 36px;
    }
    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    .contact-form button {
        padding: 12px;
        font-size: 1rem;
    }
    .map-container iframe {
        height: 300px;
    }
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 16px;
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.dark .modal-content {
    background: var(--dark);
    color: var(--white);
}

.modal:not(.hidden) .modal-content {
    transform: translateY(0);
}

.modal-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark .modal-header {
    background: var(--dark);
    border-bottom-color: #333;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--primary);
}

.dark .modal-title {
    color: var(--accent);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.modal-text h4 {
    color: var(--primary);
    margin: 24px 0 12px;
}

.modal-text ul,
.modal-text ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.modal-text li {
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: var(--light-gray);
}

.contact-info i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WHATSAPP & BACK TO TOP ===== */
.whatsapp-float,
.back-to-top {
    position: fixed;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 99;
    cursor: pointer;
    border: none;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.whatsapp-float {
    bottom: 24px;
    background: #25D366;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    bottom: 90px;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--accent);
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.bg-cream {
    background: var(--cream);
}

.bg-primary {
    background: var(--primary);
}

.relative {
    position: relative;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pt-32 {
    padding-top: 8rem;
}

/* ===== DARK MODE OVERRIDES ===== */
.dark body {
    background: var(--dark);
    color: var(--white);
}

.dark .bg-cream {
    background: #1e1e1e;
}

.dark .category-card,
.dark .product-card,
.dark .recipe-card,
.dark .blog-card,
.dark .stat-card,
.dark .faq-item {
    background: #242424;
    color: var(--white);
}

.dark .category-card h3,
.dark .product-card h3,
.dark .recipe-card h3,
.dark .blog-card h3 {
    color: var(--accent);
}

.dark .category-card p,
.dark .product-card p,
.dark .recipe-card p,
.dark .blog-card p,
.dark .stat-label {
    color: #aaa;
}

.dark .size-tag {
    background: #333;
    color: var(--accent);
}

.dark .filter-tab {
    border-color: var(--accent);
    color: var(--accent);
}

.dark .filter-tab.active,
.dark .filter-tab:hover {
    background: var(--accent);
    color: var(--dark);
}

.dark .btn-outline-dark {
    border-color: var(--accent);
    color: var(--accent);
}

.dark .btn-outline-dark:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ===== PAGE HERO FOR INNER PAGES ===== */
.page-hero {
    background: var(--cream);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
}

.dark .page-hero {
    background: #1e1e1e;
    border-bottom-color: #333;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 768px) {
    .page-hero p {
        font-size: 1rem;
    }
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white);
}

.dark .timeline-year {
    box-shadow: 0 0 0 4px #1e1e1e;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

.dark .timeline-content {
    background: #242424;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px;
    }
    .timeline-year {
        left: 20px;
        transform: translateX(0);
        top: -20px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    .timeline-content {
        width: 100%;
        margin-top: 20px;
        padding: 16px;
    }
}

/* ===== SOCIAL SHOWCASE ===== */
.social-showcase {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.social-card {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    min-width: 180px;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-card i {
    font-size: 2.5rem;
}

.social-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.social-card small {
    color: var(--gray);
}

.social-card.instagram i { color: #E1306C; }
.social-card.facebook i { color: #1877F2; }
.social-card.youtube i { color: #FF0000; }

.dark .social-card {
    background: #242424;
    color: var(--white);
}

/* ===== INQUIRY BADGES ===== */
.inquiry-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.badge {
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PRODUCT DETAILS BUTTON ===== */
.product-details-btn {
    margin-bottom: 12px;
    width: 100%;
    padding: 8px !important;
    font-size: 0.9rem;
}

/* ===== HERO PATTERN ===== */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

/* ===== SWIPER CUSTOM ===== */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

/* ===== PAGE TRANSITION OVERLAY ===== */
#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.dark #page-transition {
    background: var(--dark);
}
#page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== HEALTH PAGE MOBILE REFINEMENTS ===== */
@media (max-width: 768px) {
    /* Reduce overall text size in health sections */
    .health-section p, .health-section li {
        font-size: 0.95rem;
    }
    /* Make stat cards more compact */
    .health-section .stats-grid {
        gap: 12px;
    }
    .health-section .stat-card {
        padding: 12px;
    }
    .health-section .stat-number {
        font-size: 1.6rem;
    }
    /* Adjust bullet lists */
    .health-section ul {
        padding-left: 20px;
        margin-top: 16px;
    }
    .health-section ul li {
        margin-bottom: 8px;
    }
    /* Improve spacing in vmv cards (dark section) */
    .health-section .vmv-card {
        padding: 24px 20px;
    }
    .health-section .vmv-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    .health-section .vmv-card h3 {
        font-size: 1.3rem;
    }
    /* Reduce size of section title in dark area */
    .health-section .bg-primary .section-title {
        font-size: 1.8rem;
    }
    /* Adjust grid-2 inside health for better stacking */
    .health-section .grid-2 {
        gap: 24px;
    }
    /* Quote card adjustments if any */
    .health-section .quote-card {
        padding: 16px;
    }
    .health-section .quote-card p {
        font-size: 0.9rem;
    }
}

/* ===== CONTACT PAGE INQUIRY RADIOS (MOBILE) ===== */
@media (max-width: 600px) {
    .inquiry-radios {
        flex-direction: column;
        gap: 10px;
    }
    .inquiry-radio {
        width: 100%;
    }
    .inquiry-radio label {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}
