/* =====================================================
   LANDSCAPE MATERIALS SUPPLY CO. - MAIN STYLESHEET
   Branding matches saudilandscape.com style exactly
   Accent: Amber/Gold #1B5E20 (instead of SLC's lime green)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #212121;
    line-height: 1.6;
    background-color: #fff;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B5E20;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

/* Section headings - dark green to match brand */
.section-heading {
    font-size: 2.8rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.section-subheading {
    font-size: 1rem;
    color: #545456;
    font-weight: 400;
    margin-bottom: 40px;
}

/* =====================================================
   BUTTONS - Outlined minimal style (matching SLC)
   ===================================================== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #212121;
    background: transparent;
    color: #212121;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #212121;
    color: #fff;
}

.btn-accent {
    border-color: #1B5E20;
    color: #1B5E20;
}

.btn-accent:hover {
    background: #1B5E20;
    color: #fff;
}

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-white:hover {
    background: #fff;
    color: #212121;
}

.btn-dark {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

.btn-dark:hover {
    background: #333;
}

/* =====================================================
   HEADER & NAVIGATION (matching SLC exactly)
   ===================================================== */
.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Logo - matches "Saudi □ LANDSCAPE" layout */
.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
}

.logo-square {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #1B5E20;
    background: transparent;
    position: relative;
}

.logo-square::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: #1B5E20;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #212121;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop navigation links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 0.85rem;
    color: #212121;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: #1B5E20;
}

/* Header right side */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact a {
    font-size: 0.85rem;
    color: #545456;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.header-contact a:hover {
    color: #1B5E20;
}

.header-contact .divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

/* Hamburger - hidden on desktop, visible on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #212121;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Full-screen navigation overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay .nav-list {
    text-align: center;
}

.nav-overlay .nav-list li {
    margin-bottom: 15px;
}

.nav-overlay .nav-list li a {
    font-size: 2rem;
    font-weight: 300;
    color: #212121;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-overlay .nav-list li a:hover {
    color: #1B5E20;
}

.nav-overlay .nav-address {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #545456;
}

/* Mobile nav (non-overlay fallback) */
.mobile-nav {
    display: none;
    padding: 20px 40px;
    border-top: 1px solid #eee;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .nav-list li a {
    font-size: 1.1rem;
    font-weight: 400;
    color: #212121;
}

/* =====================================================
   HERO SECTION (light background - no dark)
   ===================================================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #212121;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #545456;
    letter-spacing: 1px;
}

/* Page hero (inner pages) */
.page-hero {
    min-height: 40vh;
    align-items: flex-end;
    padding-bottom: 60px;
}

.page-hero .hero-title {
    font-size: 3rem;
}

.page-hero .hero-subtitle {
    font-size: 1rem;
    margin-top: 10px;
    color: #545456;
}

/* =====================================================
   STATS SECTION (matching SLC's centered stats)
   ===================================================== */
.stats-section {
    padding: 80px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 30px 40px;
    border-right: 1px solid #e0e0e0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: #212121;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #545456;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border-radius: 0;
    overflow: hidden;
}

/* =====================================================
   CLIENTS SECTION
   ===================================================== */
.clients-section {
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.client-logo {
    flex: 0 0 auto;
    padding: 30px 50px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.client-logo img {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
}

.client-logo:last-child {
    border-right: none;
}

.client-placeholder {
    width: 120px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   FEATURED PRODUCTS SECTION
   ===================================================== */
.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 50px;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
}

.product-card-title {
    color: #212121;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =====================================================
   CATEGORIES SECTION (matching SLC "Landscape Elements")
   ===================================================== */
.categories-section {
    padding: 100px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
}

.category-box {
    padding: 30px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    transition: background 0.3s ease;
}

.category-box:hover {
    background: #fafafa;
}

.category-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1B5E20;
}

.category-list li {
    font-size: 0.85rem;
    color: #545456;
    padding: 6px 0;
    position: relative;
    padding-left: 15px;
}

.category-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1B5E20;
}

/* =====================================================
   INQUIRY / CONTACT SECTION
   ===================================================== */
.inquiry-section {
    padding: 100px 0;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.inquiry-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.inquiry-text {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.8;
    margin-bottom: 30px;
}

.inquiry-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry-contact-item i {
    color: #1B5E20;
    font-size: 1rem;
    width: 20px;
}

.inquiry-contact-item a {
    color: #545456;
    font-size: 0.95rem;
}

.inquiry-contact-item a:hover {
    color: #1B5E20;
}

/* Forms - bottom border only style (matching SLC) */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #212121;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: #1B5E20;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

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

.form-submit {
    text-align: right;
}

.form-submit .btn {
    min-width: 150px;
}

/* File upload */
.file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload i {
    color: #1B5E20;
}

.file-upload span {
    color: #aaa;
    font-size: 0.9rem;
}

/* =====================================================
   FIND US / CONTACT PAGE
   ===================================================== */
.find-us-section {
    padding: 100px 0;
}

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.find-us-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.contact-block p,
.contact-block a {
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.8;
}

.contact-block a:hover {
    color: #1B5E20;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #212121;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #1B5E20;
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.8;
}

/* =====================================================
   WHY CHOOSE US / BENEFITS GRID
   ===================================================== */
.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1B5E20;
    border: 1px solid #1B5E20;
    border-radius: 50%;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.85rem;
    color: #545456;
    line-height: 1.7;
}

/* Values section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: #545456;
}

/* =====================================================
   VENDOR SECTION
   ===================================================== */
.vendor-section {
    padding: 100px 0;
}

.vendor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.vendor-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.vendor-text p {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* =====================================================
   CAREERS SECTION
   ===================================================== */
.careers-section {
    padding: 100px 0;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-heading {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.careers-text p {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 15px;
}

.highlight-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212121;
    text-align: center;
    padding: 60px 40px;
    margin: 60px 0;
    background: #fafafa;
}

/* =====================================================
   PRODUCT CATALOG PAGE
   ===================================================== */
.catalog-section {
    padding: 100px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.catalog-card {
    border: 1px solid #e0e0e0;
    padding: 40px;
    transition: all 0.3s ease;
}

.catalog-card:hover {
    border-color: #1B5E20;
}

.catalog-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1B5E20;
}

.catalog-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B5E2022, #1B5E2044);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1B5E20;
}

.catalog-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 0;
}

.catalog-card ul {
    margin-bottom: 25px;
}

.catalog-card ul li {
    font-size: 0.85rem;
    color: #545456;
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.catalog-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1B5E20;
}

.catalog-card .btn {
    font-size: 0.8rem;
}

/* How to order steps */
.steps-section {
    padding: 80px 0;
    background: #fafafa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid #1B5E20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B5E20;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.step-text {
    font-size: 0.85rem;
    color: #545456;
}

/* Quote CTA banner */
.quote-banner {
    padding: 50px;
    background: #f5f5f5;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
}

.quote-banner h3 {
    color: #212121;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.quote-banner .btn {
    border-color: #212121;
    color: #212121;
}

.quote-banner .btn:hover {
    background: #212121;
    color: #fff;
}

/* =====================================================
   FOOTER (light grey - clean minimal style)
   ===================================================== */
.footer {
    background-color: #f5f5f5;
    color: #212121;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Footer left - logo & company info */
.footer-brand .footer-logo a {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.footer-brand .logo-name {
    color: #212121;
}

.footer-brand .logo-square {
    border-color: #1B5E20;
}

.footer-brand .logo-square::after {
    background: #1B5E20;
}

.footer-brand .logo-subtitle {
    color: #545456;
}

.footer-brand .company-legal {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-brand .company-address {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.8;
    margin-top: 15px;
}

/* Footer center - nav + contact */
.footer-center {
    padding-top: 10px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #212121;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #1B5E20;
}

.footer-touch-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.footer-touch-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-touch-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #545456;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-touch-links a:hover {
    color: #1B5E20;
}

.footer-touch-links a i {
    font-size: 1rem;
}

/* Footer right - social icons */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 10px;
}

.footer-social a {
    color: #545456;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #1B5E20;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: #888;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #1B5E20;
}

.footer-legal span {
    color: #bbb;
}

.company-profile-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #212121;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-profile-link i {
    font-size: 0.9rem;
}

/* =====================================================
   PRIVACY & TERMS PAGES (simple layout)
   ===================================================== */
.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid #f0f0f0;
}

.legal-header .back-link {
    font-size: 0.9rem;
    color: #212121;
}

.legal-header .back-link:hover {
    color: #1B5E20;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 5px;
}

.legal-date {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212121;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1B5E20;
}

.legal-content p {
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.legal-content ul li {
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.8;
    padding: 4px 0 4px 20px;
    position: relative;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1B5E20;
}

.legal-content strong {
    color: #212121;
    font-weight: 600;
}

.legal-content a {
    color: #1B5E20;
}

.legal-footer {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #aaa;
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: 2px solid #1B5E20;
    border-radius: 4px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #1B5E20 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-switch:hover {
    background: #1B5E20;
    color: #fff !important;
}

/* =====================================================
   CONTACT PAGE - FIND US LAYOUT
   ===================================================== */
.find-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.find-us-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-item-block h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1B5E20;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-detail i {
    color: #1B5E20;
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
    flex-shrink: 0;
}

.contact-detail a,
.contact-detail p {
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.6;
    margin: 0;
}

.contact-detail a:hover {
    color: #1B5E20;
}

.text-muted {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 2px;
}

/* Contact inquiry section on contact page */
.contact-inquiry-section {
    padding: 80px 0;
    background: #fafafa;
}

.contact-inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.inquiry-left p {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* =====================================================
   CAREERS PAGE IMPROVEMENTS
   ===================================================== */
.career-opportunity-section {
    padding: 80px 0;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-description {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 15px;
}

.ambitious-projects-section {
    padding: 60px 0;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.ambitious-heading {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #212121 !important;
    letter-spacing: 1px !important;
    line-height: 1.4;
}

.why-join-section {
    padding: 80px 0;
}

.why-choose-section {
    padding: 80px 0;
    background: #fafafa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s;
}

.why-card:hover {
    border-color: #1B5E20;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1B5E20;
    border: 1px solid #1B5E20;
    border-radius: 50%;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: #545456;
    line-height: 1.7;
}

.apply-now-section {
    padding: 80px 0;
}

.apply-content {
    max-width: 600px;
    margin: 0 auto;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cv-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cv-upload-label:hover {
    color: #1B5E20;
}

.cv-upload-label i {
    color: #1B5E20;
    font-size: 1.1rem;
}

#cvUpload {
    display: none;
}

/* =====================================================
   VENDOR & PARTNERS PAGE
   ===================================================== */
.vendor-registration-section {
    padding: 80px 0;
}

.vendor-description {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 15px;
}

.vendor-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-partner-section {
    padding: 80px 0;
    background: #fafafa;
}

/* =====================================================
   VALUES SECTION
   ===================================================== */
.values-section {
    padding: 80px 0;
    background: #fafafa;
}

.value-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.value-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.85rem;
    color: #545456;
    line-height: 1.7;
}

/* =====================================================
   ABOUT DETAIL SECTION
   ===================================================== */
.about-detail-section {
    padding: 80px 0;
}

.about-detail-content p {
    font-size: 0.95rem;
    color: #545456;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
}

.text-center .about-detail-content p {
    margin-left: auto;
    margin-right: auto;
}

/* Mission Vision cards */
.mission-vision-section {
    padding: 80px 0;
    background: #fafafa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-vision-card {
    padding: 50px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.mission-vision-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1B5E20;
    border: 1px solid #1B5E20;
    border-radius: 50%;
}

.mission-vision-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mission-vision-card p {
    font-size: 0.9rem;
    color: #545456;
    line-height: 1.8;
}

/* Quote CTA section on products page */
.quote-cta-section {
    padding: 40px 0;
}

.quote-cta-banner {
    padding: 50px;
    background: #f5f5f5;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.quote-cta-banner h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 10px;
}

.quote-cta-banner p {
    font-size: 0.95rem;
    color: #545456;
    margin-bottom: 25px;
}

/* Products categories expanded grid */
.products-categories-section {
    padding: 80px 0;
}

.categories-grid-expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.3s;
}

.category-card:hover {
    border-color: #1B5E20;
}

.category-card-image {
    height: 180px;
    width: 100%;
}

.category-card-content {
    padding: 30px;
}

.category-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1B5E20;
}

.category-subitems {
    margin-bottom: 20px;
}

.category-subitems li {
    font-size: 0.85rem;
    color: #545456;
    padding: 4px 0 4px 15px;
    position: relative;
}

.category-subitems li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1B5E20;
}

.category-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-actions .btn {
    font-size: 0.8rem;
    padding: 10px 20px;
}

.btn-secondary {
    background: #1B5E20;
    color: #fff;
    border-color: #1B5E20;
}

.btn-secondary:hover {
    background: #145218;
}

.btn-outline {
    border-color: #212121;
    color: #212121;
}

.btn-outline:hover {
    background: #212121;
    color: #fff;
}

.btn-primary {
    background: #1B5E20;
    color: #fff;
    border-color: #1B5E20;
}

.btn-primary:hover {
    background: #145218;
}

/* How to order section */
.how-to-order-section {
    padding: 80px 0;
    background: #fafafa;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.order-step {
    text-align: center;
    padding: 30px 20px;
}

.order-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 10px;
}

.order-step p {
    font-size: 0.85rem;
    color: #545456;
    line-height: 1.7;
}

/* Image placeholder */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 0.85rem;
}

/* FAQ container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        padding: 15px 20px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    .hero {
        min-height: 60vh;
        padding-bottom: 50px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .page-hero .hero-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .stats-grid {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .about-content,
    .inquiry-content,
    .vendor-content,
    .careers-content,
    .career-content,
    .contact-inquiry-content,
    .find-us-grid,
    .find-us-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .categories-grid-expanded {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-nav {
        gap: 15px;
    }

    .legal-header {
        padding: 15px 20px;
    }

    .legal-content {
        padding: 40px 20px 60px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .header, .footer, .hamburger, .nav-overlay {
        display: none;
    }

    body {
        color: #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
