/* --- Global Variables & Color Palette (Navy & Sage) --- */
:root {
    --brand-navy: #16263B;
    --brand-navy-hover: #0E1A2B;
    --brand-sage: #6A8A6B;
    --brand-sage-hover: #547055;
    --accent-gold: #D97706;
    --accent-gold-hover: #B45309;
    --pure-white: #FFFFFF;
    --text-muted: #475569;
    
    /* Enhanced Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 20px 40px 0 rgba(22, 38, 59, 0.08);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Base Resets & Global Fixed Background --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--brand-navy);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('https://images.unsplash.com/photo-1542841791-1925b02a2cb4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.95); 
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(106, 138, 107, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--brand-navy);
}

/* --- Apple-Style Glassmorphism Core --- */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.glass-card-dark {
    background: rgba(22, 38, 59, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 3.5rem;
    color: var(--pure-white);
}

/* --- Badges & Pills --- */
.badge-pill {
    display: inline-block;
    background: rgba(106, 138, 107, 0.15);
    color: var(--brand-sage);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accent-pill {
    background: rgba(217, 119, 6, 0.15);
    color: #B45309;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--brand-sage);
    color: var(--pure-white);
    box-shadow: 0 4px 14px rgba(106, 138, 107, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-sage-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 138, 107, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--brand-navy);
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background-color: var(--pure-white);
    transform: translateY(-2px);
    border-color: var(--brand-navy);
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--pure-white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-accent:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Header Styling --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    height: 38px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.primary-nav a {
    text-decoration: none;
    color: var(--brand-navy);
    font-weight: 600;
    transition: color 0.3s ease;
}

.primary-nav a:hover {
    color: var(--brand-sage);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 8rem 0 6rem 0;
    text-align: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85); 
    box-shadow: 0 30px 60px rgba(22, 38, 59, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--brand-navy);
    margin-bottom: 1.2rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

/* --- Trust Bar --- */
.trust-bar {
    background: linear-gradient(90deg, var(--brand-navy), #1A2E47);
    color: var(--pure-white);
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Corporate Strategy Section --- */
.corporate-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin-bottom: 0.75rem;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.corporate-card h3 {
    color: var(--brand-navy);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.corporate-card p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.card-icon-header {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.activity-list {
    list-style: none;
    margin: 1.5rem 0;
}

.activity-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--brand-navy);
}

.activity-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-sage);
    font-weight: bold;
}

.compliance-box {
    background: rgba(106, 138, 107, 0.1);
    border-left: 4px solid var(--brand-sage);
    padding: 1rem;
    border-radius: 0 10px 10px 0;
    margin-top: 1.5rem;
}

/* --- Product Grid --- */
.product-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--brand-navy);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(22, 38, 59, 0.15);
    border-color: rgba(106, 138, 107, 0.4);
}

/* --- Updated Product Image Wrapper for Tall Bottles --- */
.card-image-wrap {
    position: relative;
    height: 280px; /* Increased height to accommodate the tall bottles */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: transparent; /* Removed the grey background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    /* Changed from 'cover' to 'contain' so the whole bottle stays in frame */
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image-wrap img {
    transform: scale(1.08); /* Slightly deeper zoom on hover */
}

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-sage);
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
}

.accent-tag {
    background: var(--accent-gold);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--brand-navy);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* --- B2B Inquiry Form Section --- */
.inquiry-section {
    padding: 6rem 0;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.inquiry-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.inquiry-text p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.b2b-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.9);
    font-family: var(--font-body);
    color: var(--brand-navy);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: 2px solid var(--brand-sage);
    border-color: transparent;
}

/* --- Global Footer --- */
.main-footer {
    padding: 4rem 0 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 35px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--brand-navy);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--brand-sage);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .corporate-grid, .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .primary-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .cta-group {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}