:root {
    --bg: #F8F7F3; /* Soft Neutral */
    --text: #171B16; /* Near Black */
    --text-muted: #525C51; /* Muted Olive */
    --primary: #43A047; /* Fresh Green */
    --primary-dark: #2E7D32; /* Deep Leaf Green */
    --accent: #FBC02D; /* Warm Yellow */
    --border: #E2E1DA;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Public Sans', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing System */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 40px;
    --space-5: 64px;
    --space-6: 96px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    position: relative;
    overflow-x: hidden; /* This kills the horizontal scrollbar */
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-4);
    color: var(--primary-dark);
}

.eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
    max-width: 60ch;
}

p.lead {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    color: var(--text);
    margin-bottom: var(--space-3);
    max-width: 50ch;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

.row {
    --bs-gutter-x: var(--space-4);
    --bs-gutter-y: var(--space-4);
}

section {
    padding: var(--space-6) 0;
    position: relative;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-3) 0;
    transition: var(--transition);
    border: none; /* Override bootstrap navbar border */
}
.site-header .container {
    max-width: 100%;
    padding-left: var(--space-2); /* Reduce padding for mobile */
    padding-right: var(--space-2);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1); /* Make it white by default since hero is dark */
    width: 1.5em;
    height: 1.5em;
}

.site-header.scrolled .navbar-toggler-icon {
    filter: none; /* Revert to default dark in scrolled state */
}

.site-header.scrolled {
    padding: var(--space-2) 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Remove unnecessary constraints */
    box-sizing: border-box;
}
.container {
  max-width: 100%;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 88px;   /* adjust 24–36px if needed */
  width: auto;
  display: block;
}

.logo span {
  font-weight: 600;
  letter-spacing: 1px;
  color:#fff;
}

.site-header.scrolled .logo {
    color: var(--text);
}

.site-header.scrolled .logo span {
    color: var(--text);
}

.site-header.scrolled .logo i {
    color: var(--primary-dark);
}

.navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-4);
    align-items: center;
    padding: 0;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.main-nav a:hover {
    color: white;
    opacity: 0.7;
    letter-spacing: 0.11em;
}

.site-header.scrolled .main-nav a {
    color: var(--text-muted);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--text);
    opacity: 0.7;
}

.nav-login {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.site-header.scrolled .nav-login {
    background: #2F6BFF;
    border-color: #2F6BFF;
    color: #fff !important;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2);
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.85rem;
    margin-top: var(--space-4);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 0 var(--primary-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #111;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    animation: bgScale 20s infinite alternate ease-in-out;
}

@keyframes bgScale {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 26, 12, 0.9) 20%, rgba(14, 26, 12, 0.1) 100%);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-headline {
    font-size: clamp(2.8rem, 8vw, 5.2rem); /* Reduced size by ~20% from 6.5rem max */
    line-height: 1.15;
    margin-bottom: var(--space-4);
    color: white;
}

.hero-subtext {
    font-size: clamp(1rem, 1.2vw, 1.125rem); /* 16-18px range */
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-4);
    max-width: 50ch;
    line-height: 1.6;
}

.about-identity {
    margin-top: var(--space-4);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}

.about-identity .divider {
    width: 24px;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

.hero-trust {
    margin-top: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.trust-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.trust-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

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

/* Editorial Image */
.editorial-image-wrapper {
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
}

.editorial-image-wrapper {
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
}

.editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.editorial-image-wrapper:hover .editorial-img {
    transform: scale(1.03);
}

/* Product Gallery */
.product-gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg);
}

.gallery-media {
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.4); /* Primary Dark with Alpha */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.gallery-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 0;
    font-style: italic;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.03);
}

/* Services */
.services-clean {
    background: #F0EEE9;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5) var(--space-4);
}

.service-item {
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    width: var(--space-4);
    height: var(--space-4);
    color: var(--primary);
    margin-bottom: var(--space-2);
    stroke-width: 1.5px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    color: var(--primary-dark);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    color: var(--primary-dark);
}

/* Statistics Editorial */
.stats-editorial {
    padding: var(--space-6) 0;
    background: #FDFDFB; /* Subtle off-white */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.stat-item {
    text-align: left;
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5) var(--space-3);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* Contact */
.info-block {
    margin-bottom: var(--space-4);
}

.info-block label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-1);
    letter-spacing: 0.1em;
}

.info-block p {
    font-size: 1.4rem;
    color: var(--text);
}

.map-placeholder {
    aspect-ratio: 16 / 9;
    min-height: 400px;
}

.site-footer {
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    section { padding: var(--space-5) 0; }
    .hero { height: auto; min-height: 100vh; padding: 180px 0 100px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
    .service-list { grid-template-columns: 1fr; gap: var(--space-4); }
    .header-inner { padding: 0; }
    
    /* Offcanvas Styling overrides */
    .offcanvas {
        width: 80% !important;
        max-width: 320px !important;
        padding: 32px;
        background: #fff;
    }

    .offcanvas-header {
        padding: 0 0 var(--space-3) 0;
        margin-bottom: var(--space-3);
        border-bottom: 1px solid var(--border);
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-nav a {
        text-decoration: none;
        color: var(--text);
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 700;
        transition: var(--transition);
    }

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

    .mobile-login-btn {
        margin-top: 32px;
        display: inline-block !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        background: #2F6BFF !important;
        color: #fff !important;
        text-align: center;
        width: 100%;
        text-decoration: none;
        font-weight: 700;
        border: none !important;
        box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2) !important;
    }

    .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
    .trust-divider { width: 100%; height: 1px; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 3rem; }
}
.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .map-wrapper {
    height: 300px;
  }
}