/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* PRIMARY COLOR UPDATE: #586f53 and harmonious shades */
:root {
    --primary-green: #586f53;
    --primary-green-dark: #40543e;
    --primary-green-light: hwb(105 45% 43%);
    --accent-green: #7a9272;
    --white: #fff;
}

/* HEADER STYLES REMOVED */

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Section Styles */
.welcome-section {
    padding: 60px 0;
    background: white;
}

.products-section {
    padding: 60px 0;
    background: #F8F8F8;
}

.gallery-section {
    padding: 60px 0;
    background: white;
}

/* IMPROVE BUTTONS AND SECTION HEADERS */
.section-header {
    margin-bottom: 28px;
}
.section-button {
    font-size: 1.1rem;
    padding: 12px 28px;
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(30,58,138,0.06);
}

.section-button:hover {
    background: #152a5e;
    transform: translateY(-2px);
}

.section-button i {
    font-size: 14px;
}

/* SECTION HEADERS RESTORED */
.section-title {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
    margin-top: 0;
    text-align: left;
    letter-spacing: 0.01em;
    padding-left: 0;
    padding-top: 10px;
}

/* SECTION PILL HEADERS - CENTERED, SMALLER, NAVY BACKGROUND */
.section-pill {
    display: block;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 999px;
    padding: 0.5em 1.8em;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 32px;
    margin-top: 0;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(30,58,138,0.08);
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    border: none;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .section-pill {
        font-size: 0.95rem;
        padding: 0.4em 1em;
        margin-bottom: 18px;
    }
}

/* Welcome Content */
.welcome-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: var(--primary-green-dark);
}

.read-more {
    color: #F58220;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.product-image {
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.product-item h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile responsive for products grid */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        max-width: 600px;
    }
    
    .product-image img {
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(30,58,138,0.04);
        background: #f8f8f8;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-item {
        padding: 12px;
    }
    
    .product-image img {
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(30,58,138,0.04);
        background: #f8f8f8;
    }
    
    .product-item h3 {
        font-size: 13px;
        margin-top: 8px;
    }
}

/* Gallery Styles */
.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* GALLERY 4-COLUMN GRID */
.gallery-grid.gallery-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(30,58,138,0.04);
    background: #f8f8f8;
}

.gallery-large {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Footer Styles */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    padding: 0;
    border-radius: 0;
}

.footer-column a:hover {
    color: #fff;
    background: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-green-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.powered-by {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .gallery-grid.gallery-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Remove sticky header */
.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(30,58,138,0.07);
    /* position: sticky; */
    /* top: 0; */
    z-index: 100;
    transition: box-shadow 0.3s;
}

/* Header container fix for mobile: no centering, full width */
.header .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
.header-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 0.5rem;
    gap: 0;
    width: 100%;
}
.logo-bar {
    background: var(--white);
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
}
.logo-image {
    max-width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-green);
    cursor: pointer;
    margin-left: auto;
    margin-right: 0.5rem;
    z-index: 200;
    height: 48px;
    align-items: center;
    flex: 0 0 auto;
}
@media (max-width: 900px) {
    .header-flex {
        height: 60px;
        padding: 0 0.5rem;
        width: 100%;
    }
    .logo-image {
        max-width: 110px;
        height: 32px;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        font-size: 2.2rem;
        margin-right: 0.2rem;
        flex: 0 0 auto;
    }
}

/* Header alignment: logo left, menu/hamburger right */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    gap: 32px;
}
.logo-bar {
    background: var(--white);
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
}
.mobile-menu-toggle {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 900px) {
    .header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 0.5rem 0.5rem;
    }
    .logo-bar {
        padding: 0;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-bar-bg {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        max-width: 250px;
        width: 80vw;
        height: 100vh;
        background: var(--primary-green);
        border-radius: 24px 0 24px 24px;
        min-height: unset;
        padding: 60px 0 0 0;
        margin-right: 0;
        z-index: 9999;
        box-shadow: 0 4px 24px rgba(30,58,138,0.18);
        transition: transform 0.2s, opacity 0.2s;
        opacity: 0;
        transform: translateY(-20px);
    }
    .nav-bar-bg.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
        border-radius: 0;
        min-height: unset;
        background: transparent;
        padding: 0.5rem 0;
    }
    .nav-link {
        width: 100%;
        border-radius: 0;
        text-align: left;
        padding: 14px 20px;
        font-size: 1.05rem;
        margin: 0;
    }
    .nav-link.active, .nav-link:hover {
        border-radius: 0 !important;
    }
}

@media (max-width: 600px) {
    .header-flex {
        flex-direction: column;
        gap: 8px;
        padding: 0.5rem 0.2rem;
    }
    .logo-image {
        max-width: 110px;
        height: 32px;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
    }
    .nav-link {
        width: 100vw;
        border-radius: 0;
        text-align: left;
        padding: 12px 20px;
        font-size: 1.05rem;
    }
    .gallery-grid.gallery-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item img {
        height: 120px;
    }
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 18px;
        padding-left: 0;
        text-align: left;
    }
    .section-pill {
        font-size: 1rem;
        padding: 0.6em 1.2em 0.6em 0.8em;
        margin-bottom: 18px;
    }
    .section-pill-icon {
        width: 1.6em;
        height: 1.6em;
        font-size: 1em;
        margin-right: 0.7em;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
} 

/* --- NEW HEADER STYLES --- */
.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,58,138,0.07);
  width: 100%;
  z-index: 100;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  position: relative;
}
.logo-bar {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-image {
  max-width: 160px;
  height: 48px;
  display: flex;
  align-items: center;
}
.logo-image img {
  width: 100%;
  height: auto;
  max-height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  margin: 0 2px;
  position: relative;
}
.nav-link.active, .nav-link:hover {
  background: var(--primary-green);
  color: #fff;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(30,58,138,0.10);
  border-radius: 0 0 12px 12px;
  z-index: 200;
  padding: 0.3rem 0;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  color: var(--primary-green);
  background: #fff;
  padding: 6px 18px;
  display: block;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: #f0f4fa;
  color: var(--primary-green-dark);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary-green);
  cursor: pointer;
  margin-left: 1rem;
  z-index: 300;
  height: 48px;
  align-items: center;
}

/* --- MOBILE HEADER --- */
@media (max-width: 900px) {
  .header-container {
    max-width: 100vw;
    padding: 0 0.5rem;
    height: 56px;
  }
  .logo-image {
    max-width: 110px;
    height: 32px;
  }
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: 0 4px 24px rgba(30,58,138,0.18);
    border-right: 1px solid #e0e0e0;
    z-index: 99999;
    padding-top: 70px;
    animation: slideDown 0.2s;
  }
  .main-nav.open .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0.5rem 0 !important;
    background: #fff !important;
    z-index: 99999;
  }
  .main-nav.open .nav-link {
    width: 100%;
    border-radius: 0;
    text-align: left;
    padding: 16px 24px;
    font-size: 1.1rem;
    color: var(--primary-green) !important;
    background: transparent;
    margin: 0;
    display: block;
    z-index: 99999;
  }
  .main-nav.open .nav-link.active, .main-nav.open .nav-link:hover {
    background: var(--primary-green-light);
    color: #fff !important;
    border-radius: 0;
  }
  .main-nav.open .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #fff;
    min-width: 0;
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .main-nav.open .dropdown.open .dropdown-menu {
    display: block;
  }
  .main-nav.open .dropdown-menu a {
    color: var(--primary-green);
    background: #fff;
    padding: 12px 36px;
    font-size: 1rem;
    display: block;
  }
  .main-nav.open .dropdown-menu a:hover {
    background: var(--primary-green-light);
    color: #fff;
  }
} 

/* --- HEADER HEIGHT & LOGO SIZE --- */
.header-container {
  height: 80px;
}
.logo-image {
  max-width: 200px;
  height: 64px;
}
.logo-image img {
  max-height: 64px;
}
@media (max-width: 900px) {
  .header-container {
    height: 70px;
  }
  .logo-image {
    max-width: 140px;
    height: 48px;
  }
  .logo-image img {
    max-height: 48px;
  }
  .main-nav.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0.5rem 0;
    background: var(--primary-green);
  }
  .main-nav.open .nav-link {
    width: 100%;
    border-radius: 0;
    text-align: left;
    padding: 16px 24px;
    font-size: 1.08rem;
    color: #fff !important;
    background: transparent;
    margin: 0;
    display: block;
  }
  .main-nav.open .nav-link.active, .main-nav.open .nav-link:hover {
    background: var(--primary-green-light);
    color: #fff !important;
    border-radius: 0;
  }
} 

/* --- Fix mobile menu toggle visibility --- */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    font-size: 2.2rem;
    margin-right: 0.2rem;
    flex: 0 0 auto;
    z-index: 300;
  }
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: 0 4px 24px rgba(30,58,138,0.18);
    z-index: 2000;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
    position: static;
    height: auto;
    background: transparent;
    box-shadow: none;
  }
} 

/* HEADER STYLES - SIMPLE, RESPONSIVE */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  width: 100%;
  z-index: 100;
  position: relative;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav {
  position: relative;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
.nav-link {
  display: block;
  color: #40543e;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  margin: 0 2px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  background: #586f53;
  color: #fff;
}
.dropdown {
  position: relative;
}
.dropdown-toggle .arrow {
  font-size: 0.8em;
  margin-left: 4px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(30,58,138,0.10);
  border-radius: 0 0 10px 10px;
  z-index: 200;
  padding: 0.5rem 0;
}
.dropdown.open > .dropdown-menu,
.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  color: #40543e;
  background: #fff;
  padding: 10px 18px;
  display: block;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: #f0f4fa;
  color: #586f53;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #40543e;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .header-container {
    height: 56px;
    padding: 0 0.5rem;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    box-shadow: 0 4px 24px rgba(30,58,138,0.10);
    border-radius: 0 0 10px 10px;
    display: none;
    padding: 0.5rem 0;
    z-index: 1000;
  }
  .nav.open .nav-list {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 0;
    border-radius: 0;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .header-container {
    height: 48px;
    padding: 0 0.2rem;
  }
  .logo img {
    height: 36px;
  }
  .nav-link {
    padding: 12px 14px;
    font-size: 0.98rem;
  }
} 

/* --- MOBILE HEADER IMPROVEMENTS --- */
@media (max-width: 900px) {
  .header-container {
    height: 64px;
    padding: 0 0.5rem;
  }
  .logo img {
    height: 54px;
    max-width: 180px;
  }
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    box-shadow: 0 4px 24px rgba(30,58,138,0.10);
    border-radius: 0 0 10px 10px;
    display: none;
    padding: 80px 0 0 0;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav.open .nav-list {
    display: flex;
  }
}
@media (max-width: 600px) {
  .header-container {
    height: 56px;
    padding: 0 0.2rem;
  }
  .logo img {
    height: 44px;
    max-width: 140px;
  }
} 

/* --- MOBILE DRAWER MENU (RIGHT SIDE) --- */
@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: 60vw;
    max-width: 340px;
    min-width: 220px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: -2px 0 24px rgba(30,58,138,0.13);
    border-radius: 0 0 0 18px;
    display: none;
    padding: 32px 0 0 0;
    z-index: 2001;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
    transform: translateX(100%);
    opacity: 0;
  }
  .nav.open .nav-list {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }
  .nav-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    z-index: 2000;
    transition: opacity 0.2s;
    opacity: 0;
  }
  .nav.open ~ .nav-drawer-overlay {
    display: block;
    opacity: 1;
  }
  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #40543e;
    cursor: pointer;
    z-index: 2100;
    padding: 0;
    line-height: 1;
    display: block;
  }
}
@media (min-width: 901px) {
  .nav-close {
    display: none !important;
  }
} 

/* --- MOBILE LEFT-ALIGNED DROPDOWN SUBMENU --- */
@media (max-width: 900px) {
  .dropdown-menu.mobile-left {
    position: static !important;
    left: 0 !important;
    min-width: 0 !important;
    width: 100%;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 24px;
    background: #fff;
    text-align: left !important;
  }
  .dropdown-menu.mobile-left li a {
    padding-left: 12px;
    text-align: left !important;
    width: 100%;
    display: block;
  }
} 

@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: 60vw;
    max-width: 340px;
    min-width: 220px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: -2px 0 24px rgba(30,58,138,0.13);
    border-radius: 0 0 0 18px;
    display: none;
    padding: 32px 0 0 0;
    z-index: 2001;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
    transform: translateX(100%);
    opacity: 0;
  }
  .nav.open .nav-list {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }
  .nav-list > li {
    width: 100%;
  }
  .nav-link, .dropdown-toggle {
    width: 100%;
    display: block;
    text-align: left;
    padding: 14px 24px;
    border: none;
    background: none;
    color: #40543e;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
  }
  .nav-list > li:not(:last-child) .nav-link,
  .nav-list > li:not(:last-child) .dropdown-toggle {
    border-bottom: 1px solid #e0e0e0;
  }
  .dropdown-menu.mobile-left {
    position: static !important;
    left: 0 !important;
    min-width: 0 !important;
    width: 100%;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 0;
    background: #fff;
    text-align: left !important;
    margin: 0;
  }
  .dropdown-menu.mobile-left li {
    width: 100%;
  }
  .dropdown-menu.mobile-left li a {
    padding: 14px 32px;
    text-align: left !important;
    width: 100%;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.98rem;
    color: #40543e;
    background: none;
  }
  .dropdown-menu.mobile-left li:last-child a {
    border-bottom: none;
  }
} 

/* --- ABOUT US PAGE --- */
.about-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-main {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-section, .quality-section {
    margin-bottom: 40px;
}

.about-section h2, .quality-section h2, .why-us-section h2, .team-section h2 {
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.about-section p, .quality-section p, .why-us-section p, .team-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-us-list li {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    padding-left: 20px;
    position: relative;
}

.why-us-list li:before {
    content: "✓";
    color: #40543e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.product-sidebar h3 {
    color: #40543e;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories a {
    color: #0066cc;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s;
    padding: 0;
    text-decoration: none;
    display: block;
}

.product-categories li {
    padding: 4px 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-categories li:last-child {
    border-bottom: none;
}

.product-categories a:hover {
    color: #004499;
}

/* Mobile responsive for About page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-main {
        padding: 30px 20px;
    }
    
    .product-sidebar {
        padding: 25px 20px;
    }
    
    .about-section h2, .quality-section h2 {
        font-size: 1.8rem;
    }
} 

/* --- PAGE HEADER --- */
.page-header {
    background: linear-gradient(135deg, #40543e 0%, #2d3a2d 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsive for page header */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
} 

/* --- CONTACT US PAGE --- */
.contact-page {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info, .enquiry-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h2, .enquiry-form h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #40543e;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 20px;
}

.contact-item h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.contact-item a {
    color: #40543e;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #2d3a2d;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40543e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #40543e;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Arial', sans-serif;
}

.submit-btn:hover {
    background: #2d3a2d;
}

/* Mobile responsive for Contact page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, .enquiry-form {
        padding: 30px 20px;
    }
    
    .contact-info h2, .enquiry-form h2 {
        font-size: 1.8rem;
    }
} 

/* --- FOOTER STYLES --- */
.footer {
    background: #2d3a2d;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #40543e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background: #2d3a2d;
}

.footer-bottom {
    border-top: 1px solid #40543e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright, .powered-by {
    color: #ccc;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.powered-by strong {
    color: #fff;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
} 

.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 400px;
    height: 250px;
    border: none;
}

/* Mobile responsive for map */
@media (max-width: 768px) {
    .map-container iframe {
        height: 250px;
    }
} 

/* Image Modal Styles */
.image-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.image-modal.open {
    display: flex;
}
.image-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    background: #fff;
}
.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3100;
    text-shadow: 0 2px 8px #000;
}
@media (max-width: 600px) {
    .image-modal .modal-content {
        max-width: 98vw;
        max-height: 60vh;
    }
    .close-modal {
        top: 10px;
        right: 16px;
        font-size: 2rem;
    }
} 

/* Products Gallery: Rectangle items, increased height */
.products-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.products-gallery-item {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    /* aspect-ratio removed for rectangle */
    /* height: auto; */
}
.products-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(30,58,138,0.04);
    background: #f8f8f8;
}
@media (max-width: 1100px) {
    .products-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .products-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .products-gallery-item img {
        height: 140px;
    }
} 

.products-gallery {
    margin: 60px 0;
} 

/* Enhanced Modal Styles - Slideshow Design */
.enhanced-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
}

.enhanced-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-container {
    position: relative;
    width: 800px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 3001;
}

.enhanced-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3002;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enhanced-modal .close-modal:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
}

.modal-content-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    border: 8px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.modal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
}

.modal-prev, .modal-next {
    background: #40543e;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-prev:hover, .modal-next:hover {
    background: #2d3a2d;
    transform: scale(1.1);
}

.modal-dots {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-dot.active {
    background: #40543e;
    transform: scale(1.2);
}

.modal-dot:hover {
    background: #666;
}

.modal-counter {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

/* Mobile responsive for enhanced modal */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-content-wrapper {
        padding: 15px;
    }
    
    .modal-image-container {
        border-width: 4px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-controls {
        gap: 15px;
        padding: 10px;
    }
    
    .modal-prev, .modal-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-dots {
        gap: 6px;
        max-width: 200px;
    }
    
    .modal-dot {
        width: 8px;
        height: 8px;
    }
}

/* Gallery Carousel Styles */
.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.carousel-prev, .carousel-next {
    background: rgba(88, 111, 83, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(88, 111, 83, 1);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(88, 111, 83, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(88, 111, 83, 0.6);
}

/* Responsive Design for Gallery Carousel */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
    
    .carousel-slide img {
        height: 200px; /* Reduced height for better rectangular aspect */
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 50%; /* Show 2 images on mobile */
    }
    
    .carousel-slide img {
        height: 150px; /* Reduced height for mobile, keeping rectangular aspect */
    }
    
    .carousel-controls {
        padding: 0 5px;
    }
    
    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    display: block;
    max-height: 60px;
    width: auto;
}