/* ============================================================
   TABLE OF CONTENTS
   1. CSS Variables & Root Styles
   2. Reset & Base Styles
   3. Typography
   4. Preloader
   5. Top Bar
   6. Header & Navigation
   7. Hero Section
   8. Company Introduction
   9. Company Highlights
   10. Why Choose Us
   11. Product Categories
   12. Manufacturing Process Overview
   13. Infrastructure
   14. Certifications
   15. Export Markets
   16. Industries Served
   17. Awards
   18. Quality Assurance
   19. Statistics Counter
   20. Call To Action
   21. Client Inquiry / Contact Form
   22. Latest Updates / Blog
   23. Footer
   24. Back to Top
   25. Page Header (Inner Pages)
   26. About Page
   27. Products Page
   28. Product Detail Page
   29. Manufacturing Page
   30. Infrastructure Page
   31. Certifications Page
   32. Export Page
   33. Gallery Page
   34. Contact Page
   35. Inquiry Page
   36. 404 Page
   37. Thank You Page
   38. Privacy & Terms Pages
   39. Animations
   40. Helper Classes
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & ROOT STYLES
   ============================================================ */
:root {
    --color-primary: #1a5632;
    --color-primary-dark: #0f3d22;
    --color-primary-light: #2d7a4a;
    --color-secondary: #c8952e;
    --color-secondary-light: #dbb15a;
    --color-accent: #e8a828;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --color-text-lighter: #95a5a6;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #1a1a2e;
    --color-border: #e8ecef;
    --color-border-light: #f0f2f5;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-success: #28a745;
    --color-error: #dc3545;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --container-max: 1200px;
    --header-height: 80px;
    --topbar-height: 42px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--color-bg-alt);
}

.section-bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); }
h6 { font-size: var(--font-size-base); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title .subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title p {
    font-size: var(--font-size-md);
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
    margin: 15px auto;
    border-radius: 2px;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left .title-divider {
    margin: 15px 0;
}

/* ============================================================
   4. PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-inner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

.preloader-inner span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-weight: 500;
}

/* ============================================================
   5. TOP BAR
   ============================================================ */
.top-bar {
    background: var(--color-primary-dark);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    font-size: 12px;
    color: var(--color-secondary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: var(--color-white);
    font-size: 14px;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-right a:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 55px;
    width: auto;
}

.header-logo .logo-text {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.header-logo .logo-text span {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 400;
    color: var(--color-text-light);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav > ul > li {
    position: relative;
}

.header-nav > ul > li > a {
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav > ul > li > a:hover,
.header-nav > ul > li > a.active {
    color: var(--color-primary);
    background: rgba(26, 86, 50, 0.06);
}

.header-nav > ul > li > a i {
    font-size: 10px;
    margin-left: 2px;
}

/* Dropdown */
.header-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    z-index: 100;
    display: none;
}

@media (min-width: 993px) {
    .header-nav > ul > li:hover .dropdown-menu,
    .header-nav .dropdown-menu.show {
        display: block;
    }
}

.header-nav .dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-nav .dropdown-menu li a:hover {
    background: rgba(26, 86, 50, 0.08);
    color: var(--color-primary);
    padding-left: 22px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .inquiry-btn {
    padding: 12px 28px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.header-actions .inquiry-btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    background: var(--color-bg-dark);
}

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

.hero-slide.active {
    opacity: 1;
}

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

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 34, 0.85) 0%, rgba(26, 86, 50, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content .hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(200, 149, 46, 0.2);
    border: 1px solid rgba(200, 149, 46, 0.4);
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary-light);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--color-secondary-light);
}

.hero-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-secondary);
}

.btn-outline {
    display: inline-block;
    padding: 14px 34px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.hero-indicators button.active {
    background: var(--color-secondary);
    border-color: var(--color-white);
    width: 35px;
    border-radius: 6px;
}

/* ============================================================
   8. COMPANY INTRODUCTION
   ============================================================ */
.company-intro {
    position: relative;
}

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

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.intro-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-secondary);
    color: var(--color-white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.intro-image .experience-badge .number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.intro-image .experience-badge .text {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.intro-text .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.intro-text .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-size-sm);
}

.intro-text .features-list li i {
    color: var(--color-secondary);
    font-size: 16px;
    margin-top: 3px;
}

/* ============================================================
   9. COMPANY HIGHLIGHTS
   ============================================================ */
.highlights {
    background: var(--color-bg-alt);
}

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

.highlight-card {
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-secondary);
}

.highlight-card .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--color-primary);
    transition: var(--transition);
}

.highlight-card:hover .icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.highlight-card h4 {
    font-size: var(--font-size-md);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   10. WHY CHOOSE US
   ============================================================ */
.why-choose {
    position: relative;
}

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

.why-card {
    padding: 35px 30px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-secondary);
    transition: var(--transition);
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-card .icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-sm);
    background: rgba(200, 149, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: var(--font-size-md);
    margin-bottom: 10px;
}

.why-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   11. PRODUCT CATEGORIES
   ============================================================ */
.products-overview {
    background: var(--color-bg-alt);
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-card .product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: 50px;
}

.product-card .product-info {
    padding: 25px;
}

.product-card .product-info h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
}

.product-card .product-info p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.product-card .product-actions {
    display: flex;
    gap: 10px;
}

.product-card .product-actions .btn-sm {
    padding: 8px 18px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.product-card .product-actions .btn-details {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.product-card .product-actions .btn-details:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-card .product-actions .btn-inquiry {
    background: var(--color-secondary);
    color: var(--color-white);
}

.product-card .product-actions .btn-inquiry:hover {
    background: var(--color-primary-dark);
}

/* ============================================================
   12. MANUFACTURING PROCESS OVERVIEW
   ============================================================ */
.process-overview {
    position: relative;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .step-number {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    transform: scale(1.1);
}

.process-step .step-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-size: var(--font-size-md);
    margin-bottom: 8px;
}

.process-step p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   13. INFRASTRUCTURE
   ============================================================ */
.infrastructure-overview {
    background: var(--color-bg-alt);
}

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

.infra-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.infra-card .icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    color: var(--color-primary);
    transition: var(--transition);
}

.infra-card:hover .icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.infra-card h4 {
    font-size: var(--font-size-base);
    margin-bottom: 8px;
}

.infra-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   14. CERTIFICATIONS
   ============================================================ */
.certifications-showcase {
    position: relative;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.cert-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cert-card .cert-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    padding: 10px;
    overflow: hidden;
}

.cert-card .cert-image img {
    max-height: 100%;
    object-fit: contain;
}

.cert-card h4 {
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}

.cert-card span {
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
}

/* ============================================================
   15. EXPORT MARKETS
   ============================================================ */
.export-markets {
    background: var(--color-bg-alt);
}

.export-map {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.export-map img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.countries-list span {
    padding: 8px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    transition: var(--transition);
}

.countries-list span:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ============================================================
   16. INDUSTRIES SERVED
   ============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.industry-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-secondary);
}

.industry-item .icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.industry-item h5 {
    font-size: var(--font-size-base);
    margin-bottom: 5px;
}

.industry-item span {
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
}

/* ============================================================
   17. AWARDS
   ============================================================ */
.awards-section {
    background: var(--color-bg-alt);
}

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

.award-card {
    display: flex;
    gap: 20px;
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: center;
}

.award-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.award-card .award-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: rgba(200, 149, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
}

.award-card .award-info h4 {
    font-size: var(--font-size-base);
    margin-bottom: 3px;
}

.award-card .award-info span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   18. QUALITY ASSURANCE
   ============================================================ */
.quality-section {
    position: relative;
}

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

.quality-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.quality-item:hover {
    box-shadow: var(--shadow-md);
}

.quality-item .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: var(--color-primary);
}

.quality-item h4 {
    font-size: var(--font-size-md);
    margin-bottom: 10px;
}

.quality-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   19. STATISTICS COUNTER
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   20. CALL TO ACTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 149, 46, 0.1) 0%, transparent 60%);
    animation: pulse 6s ease-in-out infinite;
}

.cta-section h2 {
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
}

.cta-section .btn-cta-primary {
    padding: 16px 36px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cta-section .btn-cta-primary:hover {
    background: var(--color-secondary-light);
    color: var(--color-primary-dark);
}

.cta-section .btn-cta-outline {
    padding: 16px 36px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.cta-section .btn-cta-outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

/* ============================================================
   21. CLIENT INQUIRY / CONTACT FORM
   ============================================================ */
.inquiry-section {
    background: var(--color-bg-alt);
}

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

.inquiry-info h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 15px;
}

.inquiry-info p {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.inquiry-info .contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.inquiry-info .contact-details .detail-item .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 16px;
}

.inquiry-info .contact-details .detail-item h5 {
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
}

.inquiry-info .contact-details .detail-item span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.inquiry-form {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.inquiry-form h3 {
    margin-bottom: 25px;
    font-size: var(--font-size-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    transition: var(--transition);
    background: var(--color-white);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

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

.form-group .error-message {
    font-size: var(--font-size-xs);
    color: var(--color-error);
    margin-top: 4px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--color-error);
}

.form-group.error .error-message {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-base);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--color-primary-dark);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 60px;
    color: var(--color-success);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: var(--font-size-xl);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--color-text-light);
}

/* ============================================================
   22. LATEST UPDATES / BLOG
   ============================================================ */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.update-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.update-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.update-card .update-image {
    height: 200px;
    overflow: hidden;
}

.update-card .update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.update-card .update-content {
    padding: 20px;
}

.update-card .update-content .date {
    font-size: var(--font-size-xs);
    color: var(--color-text-lighter);
    margin-bottom: 8px;
}

.update-card .update-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: 8px;
}

.update-card .update-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.update-card .update-content .read-more {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.update-card .update-content .read-more:hover {
    color: var(--color-secondary);
}

/* ============================================================
   23. FOOTER
   ============================================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about h3 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
}

.footer-about p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-about .social-links {
    display: flex;
    gap: 10px;
}

.footer-about .social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-about .social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.footer h4 {
    color: var(--color-white);
    font-size: var(--font-size-md);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '\203A';
    font-size: 16px;
    color: var(--color-secondary);
}

.footer-links ul li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
}

.footer-contact ul li i {
    color: var(--color-secondary);
    margin-top: 5px;
    min-width: 16px;
}

.footer-contact ul li span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--color-secondary);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================================
   24. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ============================================================
   25. PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
}

.page-header h1 {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb a {
    color: var(--color-secondary-light);
}

.page-header .breadcrumb a:hover {
    color: var(--color-secondary);
}

.page-header .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   26. ABOUT PAGE
   ============================================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story .story-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.about-story .story-content h2 {
    margin-bottom: 20px;
}

.about-story .story-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.about-story .story-content .directors-list {
    margin-top: 20px;
}

.about-story .story-content .directors-list h4 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

.about-story .story-content .directors-list ul li {
    padding: 6px 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.about-story .story-content .directors-list ul li:last-child {
    border-bottom: none;
}

/* ============================================================
   27. PRODUCTS PAGE
   ============================================================ */
.products-page .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-detail .product-gallery .main-image {
    height: 400px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}

.product-detail .product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .product-info h2 {
    margin-bottom: 15px;
}

.product-detail .product-info .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.product-detail .product-info .product-meta span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.product-detail .product-info .product-meta span strong {
    color: var(--color-text);
}

.product-detail .product-info .description {
    margin-bottom: 25px;
}

.product-detail .product-info .description h4 {
    font-size: var(--font-size-md);
    margin-bottom: 10px;
}

.product-detail .product-info .description p {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
}

.product-detail .product-info .btn-inquiry-lg {
    padding: 14px 36px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition);
}

.product-detail .product-info .btn-inquiry-lg:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.product-tabs {
    margin-bottom: 60px;
}

.product-tabs .tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 30px;
}

.product-tabs .tab-nav button {
    padding: 12px 28px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.product-tabs .tab-nav button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.product-tabs .tab-nav button:hover {
    color: var(--color-primary);
}

.product-tabs .tab-content {
    display: none;
}

.product-tabs .tab-content.active {
    display: block;
}

.product-tabs .tab-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.product-tabs .tab-content ul li {
    padding: 8px 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-tabs .tab-content ul li::before {
    content: '\2713';
    color: var(--color-secondary);
    font-weight: 700;
}

.related-products h3 {
    margin-bottom: 30px;
}

.related-products .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ============================================================
   28. MANUFACTURING PAGE
   ============================================================ */
.manufacturing-process {
    position: relative;
}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: -42px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 3px solid var(--color-primary);
}

.timeline-item .timeline-dot::before {
    content: attr(data-step);
    position: absolute;
    left: -35px;
    top: -2px;
    font-size: var(--font-size-xs);
    font-weight: 800;
    color: var(--color-primary);
}

.timeline-item .timeline-content {
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.timeline-item .timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-item .timeline-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   29. INFRASTRUCTURE PAGE
   ============================================================ */
.infrastructure-page .infra-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.infra-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.infra-detailed-card:hover {
    box-shadow: var(--shadow-md);
}

.infra-detailed-card .infra-image {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.infra-detailed-card .infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.infra-detailed-card:hover .infra-image img {
    transform: scale(1.05);
}

.infra-detailed-card .infra-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infra-detailed-card .infra-content h4 {
    margin-bottom: 10px;
}

.infra-detailed-card .infra-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   30. CERTIFICATIONS PAGE
   ============================================================ */
.certifications-page .cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.certifications-page .cert-card {
    padding: 30px;
}

.certifications-page .cert-card .cert-image {
    height: 200px;
    cursor: pointer;
}

.certifications-page .cert-card .cert-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.certifications-page .cert-card .cert-actions a {
    padding: 8px 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.certifications-page .cert-card .cert-actions .btn-view {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.certifications-page .cert-card .cert-actions .btn-view:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.certifications-page .cert-card .cert-actions .btn-download {
    background: var(--color-secondary);
    color: var(--color-white);
}

.certifications-page .cert-card .cert-actions .btn-download:hover {
    background: var(--color-primary-dark);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: var(--radius-md);
}

.lightbox .lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox .lightbox-close:hover {
    background: var(--color-error);
}

/* ============================================================
   31. EXPORT PAGE
   ============================================================ */
.export-page .export-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.export-page .export-stat-card {
    background: var(--color-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.export-page .export-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.export-page .export-stat-card .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.export-page .export-stat-card .label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.export-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.export-process-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
}

.export-process-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.export-process-card .step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-lg);
    margin: 0 auto 18px;
}

.export-process-card h4 {
    margin-bottom: 10px;
}

.export-process-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* ============================================================
   32. GALLERY PAGE
   ============================================================ */
.gallery-page .gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.gallery-page .gallery-filter button {
    padding: 10px 24px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: 50px;
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.gallery-page .gallery-filter button.active,
.gallery-page .gallery-filter button:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 86, 50, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 40px;
    margin-bottom: 10px;
}

.gallery-item .gallery-overlay span {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ============================================================
   33. CONTACT PAGE
   ============================================================ */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-page .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page .contact-info-card {
    padding: 25px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
}

.contact-page .contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-page .contact-info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 86, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: var(--color-primary);
}

.contact-page .contact-info-card h5 {
    margin-bottom: 5px;
    font-size: var(--font-size-base);
}

.contact-page .contact-info-card span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.contact-page .map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-sm);
}

.contact-page .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   34. INQUIRY PAGE
   ============================================================ */
.inquiry-page .inquiry-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ============================================================
   35. 404 PAGE
   ============================================================ */
.page-404 {
    text-align: center;
    padding: 100px 0;
}

.page-404 .error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.page-404 h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 15px;
}

.page-404 p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-404 .btn-home {
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition);
}

.page-404 .btn-home:hover {
    background: var(--color-primary-dark);
}

/* ============================================================
   36. THANK YOU PAGE
   ============================================================ */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you .success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--color-success);
}

.thank-you h2 {
    margin-bottom: 15px;
}

.thank-you p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   37. PRIVACY & TERMS PAGES
   ============================================================ */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.legal-content ul li {
    color: var(--color-text-light);
    margin-bottom: 8px;
    list-style: disc;
    line-height: 1.8;
}

/* ============================================================
   38. ANIMATIONS
   ============================================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.fade-left {
    transform: translateX(-30px);
}

.animate-on-scroll.fade-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.fade-right {
    transform: translateX(30px);
}

.animate-on-scroll.fade-right.animated {
    transform: translateX(0);
}

/* ============================================================
   39. HELPER CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-white { color: var(--color-white); }
.bg-primary { background: var(--color-primary); }
.bg-alt { background: var(--color-bg-alt); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.flex-wrap { flex-wrap: wrap; }
