/* ==========================================================================
   Vanga Bioflare Solutions - Core Design System & Styles (Bright Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #fafaf9;         /* Warm, light stone white */
    --bg-secondary: #f5f5f4;       /* Soft warm grey/beige background */
    --bg-card: #ffffff;            /* Pure white cards */
    --bg-card-hover: #ffffff;
    
    --brand-primary: #c2410c;     /* Emerald Green (optimized for high-contrast visibility) */
    --brand-primary-hover: #9a3412;
    --brand-glow: rgba(194, 65, 12, 0.12);
    --brand-gold: #ca8a04;        /* High-contrast amber/gold */
    
    --text-primary: #0f172a;       /* Slate 900 (very dark grey for maximum readability) */
    --text-secondary: #475569;     /* Slate 600 */
    --text-muted: #64748b;         /* Slate 500 */
    
    --border-color: #e2e8f0;       /* Slate 200 */
    --border-color-hover: rgba(194, 65, 12, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --container-max-width: 1200px;
    --border-radius: 12px;
}

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, textarea, select {
    font-family: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }
.text-green { color: var(--brand-primary); }
.text-gold { color: var(--brand-gold); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(250, 250, 249, 0.96);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled .navbar {
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: var(--transition-normal);
}

.logo span {
    transition: var(--transition-normal);
}

.header.scrolled .logo-img {
    height: 56px;
}

.header.scrolled .logo span {
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--brand-glow);
}

.nav-cta:hover {
    background-color: var(--brand-primary-hover);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    transition: var(--transition-normal);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 24px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header.scrolled .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-heading);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--brand-glow);
}

.btn-primary:hover {
    background-color: var(--brand-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 65, 12, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--brand-primary);
    background-color: rgba(194, 65, 12, 0.05);
    transform: translateY(-3px);
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(194, 65, 12, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 50%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 70%, var(--bg-primary));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero .btn-group {
        justify-content: center;
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .hero-subtitle {
        justify-content: center;
    }
}

.hero-subtitle::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--brand-primary);
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--brand-primary) 70%, var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.hero-image-wrapper.contain img {
    height: auto;
    object-fit: contain;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.bento-card.col-2 {
    grid-column: span 2;
}

.bento-card.row-2 {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(194, 65, 12, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    margin-bottom: 24px;
    font-size: 1.5rem;
    border: 1px solid rgba(194, 65, 12, 0.15);
}

.bento-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.bento-link:hover {
    gap: 12px;
    color: var(--brand-primary-hover);
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.col-2 {
        grid-column: span 1;
    }
}

/* Feature Cards (Products) */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 32px;
}

.product-badge {
    background-color: rgba(194, 65, 12, 0.08);
    border: 1px solid rgba(194, 65, 12, 0.2);
    color: var(--brand-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* Tech Specs Table */
.specs-table-wrapper {
    margin-top: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.specs-table th, .specs-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background-color: rgba(0, 0, 0, 0.02);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.01);
}

/* Comparison Grid (Logs/Husk vs Chips) */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 24px;
    align-items: center;
    margin: 40px 0;
}

.comparison-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.comparison-card.negative {
    border-left: 4px solid #ef4444;
}

.comparison-card.positive {
    border-left: 4px solid var(--brand-primary);
}

.vs-divider {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-muted);
    position: relative;
}

.vs-divider::before, .vs-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 60px;
    background-color: var(--border-color);
}

.vs-divider::before { top: -80px; }
.vs-divider::after { bottom: -80px; }

.comparison-list {
    margin-top: 16px;
}

.comparison-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vs-divider {
        padding: 20px 0;
    }
    
    .vs-divider::before, .vs-divider::after {
        display: none;
    }
}

/* Info List / Bullet Lists */
.info-list {
    margin-bottom: 24px;
}

.info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials / Slider */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '"';
    color: var(--brand-primary);
    font-size: 3rem;
    font-family: var(--font-heading);
    line-height: 0;
    vertical-align: bottom;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(194, 65, 12, 0.1);
    border: 1px solid rgba(194, 65, 12, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Inquiry Form */
.form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 8px rgba(194, 65, 12, 0.15);
    background-color: #ffffff;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Download Section (Product Catalogue etc.) */
.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.download-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.download-card:hover {
    border-color: var(--brand-primary);
    background-color: var(--bg-secondary);
}

.download-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.download-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.download-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(194, 65, 12, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: var(--transition-fast);
}

.download-card:hover .download-btn {
    background-color: var(--brand-primary);
    color: #ffffff;
}

@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
}

/* Interactive Logistics / Map Page details */
.regions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.region-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.region-card:hover, .region-card.active {
    border-color: var(--brand-primary);
    background-color: rgba(194, 65, 12, 0.04);
}

.region-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.region-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
}

.logistics-details {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

@media (max-width: 992px) {
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Footer styling (Keeps Dark contrast for Premium Layout look) */
.footer {
    background-color: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 30px 0;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--brand-primary);
    padding-left: 4px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-contact-info svg {
    flex-shrink: 0;
    color: var(--brand-primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #64748b;
}

.footer-copy {
    font-size: 0.85rem;
}

.footer-meta {
    font-size: 0.85rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-normal);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   Hero Slider Styling
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
}

.hero-slide.active {
    display: block;
    animation: slideFadeEffect 0.8s ease-in-out forwards;
}

@keyframes slideFadeEffect {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 30px;
    background-color: var(--border-color);
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition-normal);
}

.dot.active, .dot:hover {
    background-color: var(--brand-primary);
    width: 50px;
}

/* Floating Badges for Hero Slider */
.hero-visual {
    position: relative;
}

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    z-index: 5;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0;
    pointer-events: auto;
    transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease, border-color var(--transition-fast) ease;
}

.hero-badge:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(194, 65, 12, 0.18), 0 3px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(194, 65, 12, 0.4);
}

.badge-icon {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-badge-1 {
    top: 30px;
    left: -20px;
    transform: translateX(-30px);
}

.float-badge-2 {
    bottom: 30px;
    right: -20px;
    transform: translateX(30px);
}

/* Slide in animation triggers when slide becomes active */
.hero-slide.active .float-badge-1 {
    animation: badgeSlideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.hero-slide.active .float-badge-2 {
    animation: badgeSlideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

@keyframes badgeSlideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes badgeSlideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Adjust for smaller screens */
@media (max-width: 992px) {
    .float-badge-1 {
        left: 20px;
    }
    .float-badge-2 {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .float-badge-1 {
        top: 15px;
        left: 10px;
    }
    .float-badge-2 {
        bottom: 15px;
        right: 10px;
    }
}

/* ==========================================================================
   Premium UI Transitions & Card Enhancements
   ========================================================================== */

/* Slide-in Top Gradient Border for Bento Cards */
.bento-card {
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

/* General Scroll Reveal Utility */
.scroll-reveal {
    opacity: 0 !important;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Floating badge custom scroll reveal behaviors */
.scroll-reveal.float-badge-1 {
    opacity: 0 !important;
    transform: translateX(-35px) translateY(0);
}

.scroll-reveal.float-badge-2 {
    opacity: 0 !important;
    transform: translateX(35px) translateY(0);
}

.scroll-reveal.float-badge-1.revealed,
.scroll-reveal.float-badge-2.revealed {
    opacity: 1 !important;
    transform: translateX(0) translateY(0);
}


