:root {
    --color-primary: #00A651;
    --color-primary-dark: #007A3D;
    --color-bg: #FFFFFF;
    --color-surface: #F7F9FA;
    --color-text-primary: #1D252C;
    --color-text-secondary: #59636E;
    --color-text-body: #4A5156;
    --color-border: #E5E8EB;
    --color-primary-light: #E6F7EE;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.1);
    --radius-img: 10px;
    --radius-card: 20px;
    --radius-btn: 12px;
    --radius-input: 10px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

.center { text-align: center; }
.center-btn { text-align: center; margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

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

.btn-white {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--color-primary-light);
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.35s ease;
}
.link-arrow:hover {
    gap: 10px;
}

/* ===== EYEBROW ===== */
.eyebrow {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eyebrow.center { justify-content: center; }
.eyebrow span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-title.center { text-align: center; }

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}
.section-subtitle.center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    padding: 4px 0;
    position: relative;
}

.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.header-cta {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--color-text-primary);
    cursor: pointer;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: #fff;
    padding: 60px 0 50px;
}

.breadcrumb {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.breadcrumb a {
    color: #fff;
    opacity: 0.8;
}
.breadcrumb a:hover {
    opacity: 1;
}

.page-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-banner-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
}

/* ===== HERO ===== */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,102,51,0.6) 0%, rgba(0,166,81,0.08) 50%, transparent 100%);
    z-index: 2;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    align-items: center;
}

.hero-content {
    color: #fff;
    padding: 60px 0;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--color-primary-light);
    height: 120px;
    display: flex;
    align-items: center;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    width: 100%;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid rgba(0,166,81,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
    padding: 80px 0;
}

.who-we-are-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.who-we-are-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-we-are-content .link-arrow {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
}
.who-we-are-content .link-arrow:hover {
    color: var(--color-primary);
}

.who-we-are-image img {
    border-radius: var(--radius-img);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== WHY CHOOSE US / FEATURES ===== */
.why-choose-us {
    background: var(--color-surface);
    padding: 80px 0;
}

.why-choose-us .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

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

.feature-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--color-primary);
}


.feature-card p {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ===== PRODUCT CATEGORIES HOME ===== */
.product-categories-home {
    padding: 80px 0;
}

.product-categories-home .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.product-categories-home .section-subtitle {
    color: var(--color-text-body);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: #fff;
    transition: transform 0.5s ease;
}
.category-card:hover {
    transform: translateY(-6px);
}

.category-img {
    height: 180px;
    overflow: hidden;
    background: var(--color-primary-light);
}

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

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    padding: 16px 16px 4px;
}

.category-card p {
    font-size: 12px;
    color: var(--color-text-body);
    padding: 0 16px;
}

.category-card .link-arrow {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.center-btn .btn-outline {
    font-size: 14px;
    font-weight: 600;
}

/* ===== OUR INDUSTRIES ===== */
.industries {
    background: var(--color-surface);
    padding: 80px 0;
}

.industries .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.industry-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--color-primary);
}

.industry-card p {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-primary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background-image:
        linear-gradient(to right, rgba(0, 90, 50, 0.8), rgba(0, 166, 81, 0.8)),
        url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 14px;
    font-weight: 400;
    color: #CCEDDC;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-white {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #FFFFFF;
    position: relative;
    z-index: 1;
}
.cta-banner .btn-white:hover {
    background: #FFFFFF;
    color: var(--color-primary-dark);
}

/* ===== AKYAS SECTION ===== */
.akyas-section {
    padding: 80px 0;
}

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

.akyas-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.akyas-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.akyas-content .btn-primary {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.akyas-image img {
    border-radius: var(--radius-card);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BLOG PREVIEW (HOME) ===== */
.blog-preview {
    padding: 80px 0;
    background: var(--color-surface);
}

.blog-preview .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

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

.blog-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease;
}
.blog-card:hover { transform: translateY(-6px); }

.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--color-primary-light);
}

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

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

.blog-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

.blog-meta {
    font-size: 12px;
    color: #777C80;
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo .logo-img {
    height: 100px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    color: #CCEDDC;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: background 0.4s ease;
}
.social-icons a:hover {
    background: #fff;
    color: var(--color-primary-dark);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

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

.footer-col ul li a,
.footer-contact li {
    font-size: 14px;
    color: #CCEDDC;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact li i {
    margin-top: 4px;
    font-size: 10px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #CCEDDC;
}

/* ===== ABOUT PAGE ===== */
.about-overview {
    padding: 80px 0;
}

.about-overview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-overview-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.about-overview-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-overview-image img {
    border-radius: var(--radius-img);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-vision {
    background: var(--color-surface);
    padding: 80px 0;
}

.mission-vision .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.mv-mission {
    background: #F7F9FA;
    border: 1px solid #DEE0E2;
}

.mv-vision {
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    color: #fff;
}

.mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.mv-vision .mv-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.mv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.capabilities {
    padding: 80px 0;
}

.capabilities .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

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

.cap-card {
    background: #FFFFFF;
    border: 1px solid #DEE0E2;
    border-radius: var(--radius-card);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.info-icon,
.cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
    color: var(--color-primary);
}

.cap-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.cap-card p {
    font-size: 12px;
    color: var(--color-text-body);
}

.core-values {
    background: var(--color-surface);
    padding: 80px 0;
}

.core-values .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
}

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

.value-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--color-primary);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-body);
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    border: 1px solid #DEE0E2;
    border-radius: 10px;
    padding: 20px;
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.35s ease;
}
.search-box input::placeholder {
    color: #989FA7;
    font-weight: 500;
}
.search-box input:focus {
    border-color: var(--color-primary);
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
}

.filter-group h4 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text-body);
}

.filter-pill {
    display: block;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 6px;
    transition: all 0.35s ease;
    border: 1px solid #DEE0E2;
}

.filter-pill:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}

.filter-pill.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

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

.product-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.product-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--color-primary-light);
    display: block;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

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

.product-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.product-spec {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

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

.product-card-content .link-arrow {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-secondary);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-page {
    padding: 40px 0 80px;
}

.product-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-body);
}
.product-breadcrumb a {
    color: var(--color-text-body);
}
.product-breadcrumb a:hover {
    color: var(--color-primary);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.main-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--color-primary-light);
    margin-bottom: 16px;
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-img);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.35s ease;
}

.thumb.active, .thumb:hover {
    border-color: var(--color-primary);
}

.product-detail-info h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.product-tagline {
    color: var(--color-text-body);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.size-selector h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-body);
    margin-bottom: 10px;
}

.size-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.size-pill {
    padding: 8px 18px;
    border: 2px solid var(--color-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
}

.size-pill.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.size-pill:hover {
    border-color: var(--color-primary);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.spec-table tr {
    border-bottom: 1px solid var(--color-border);
}

.spec-table tr:nth-child(even) {
    background: var(--color-surface);
}

.spec-table td {
    padding: 14px 16px;
    font-size: 14px;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 40%;
    color: var(--color-text-secondary);
}

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

.product-actions .btn {
    font-size: 16px;
    font-weight: 700;
}

.product-description {
    padding: 40px 0;
}

.product-description h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.desc-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin-bottom: 20px;
}

.product-description p {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 12px;
}

.related-products {
    padding: 40px 0 0;
    border-top: 1px solid var(--color-border);
}

.related-products .section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 30px;
}

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

/* ===== BLOG LISTING ===== */
.blog-listing-page {
    padding: 60px 0 80px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.featured-post:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.featured-post-img {
    overflow: hidden;
    background: var(--color-primary-light);
}

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

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-post-content p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.featured-post-content .blog-meta {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.featured-post-content .btn {
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
}

.blog-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.blog-filters .filter-pill {
    font-size: 14px;
    font-weight: 700;
}

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

.blog-card-full {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s ease;
}
.blog-card-full:hover { transform: translateY(-6px); }

.blog-card-full .blog-card-img {
    height: 200px;
}

.blog-card-full .blog-card-content {
    padding: 20px;
}

.blog-card-full .blog-card-content .blog-meta {
    font-size: 10px;
    font-weight: 400;
    color: #777C80;
    margin-bottom: 8px;
}

.blog-card-full .blog-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-full .blog-card-content p {
    font-size: 12px;
    color: var(--color-text-body);
    margin-bottom: 12px;
}

.blog-card-full .blog-card-content .link-arrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

/* Blog Pagination */
.blog-listing-page .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.blog-listing-page .pagination a,
.blog-listing-page .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.35s ease;
}

.blog-listing-page .pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-listing-page .pagination .active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.blog-listing-page .pagination .disabled {
    opacity: 0.4;
    cursor: default;
}

/* ===== BLOG DETAIL ===== */
.blog-detail-page {
    padding: 40px 0 80px;
}

.blog-detail-page .breadcrumb {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.blog-detail-page .breadcrumb a {
    color: var(--color-text-body);
}

.blog-detail-page .breadcrumb a:hover {
    color: var(--color-primary);
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.blog-article .blog-meta {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-body);
    margin-bottom: 24px;
}

.blog-hero-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--color-primary-light);
}

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

.blog-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.blog-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 32px 0 16px;
}

.blog-body p {
    margin-bottom: 16px;
}

.blog-body ul {
    margin: 16px 0;
    padding-left: 20px;
    list-style: disc;
}

.blog-body li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.blog-body li::marker {
    color: var(--color-primary);
}

.blog-share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: 40px 0;
}

.share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.share-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 14px;
}
.share-icons a:hover {
    background: var(--color-primary);
    color: #fff;
}

.back-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

.related-posts {
    padding-top: 40px;
}

/* ===== CONTACT PAGE ===== */
.contact-info-cards {
    padding: 60px 0 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.info-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-body);
    line-height: 1.5;
}

.contact-form-section {
    padding: 60px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-col h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text-primary);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.35s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.alert-success {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 14px 20px;
    border-radius: var(--radius-input);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.map-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.social-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 24px;
    text-align: center;
}

.social-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.social-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.social-card .social-icons {
    justify-content: center;
}

.social-card .social-icons a {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.social-card .social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1925px) {
    .hero {
        min-height: 1000px;
    }

    .hero-inner {
        min-height: 1000px;
    }
}

@media (max-width: 1024px) {
    .features-grid,
    .industries-grid,
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to left, rgba(0, 102, 51, 0.4) 0%, rgba(0, 166, 81, 0.30) 60%, rgba(0, 102, 51, 0.4) 100%);
        z-index: 2;
    }

    .logo-img {
        height: 70px;
    }

    .header-inner {
        padding: 6px 0;
    }

    .main-nav { display: none; }
    .header-cta { display: none; }

    .mobile-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 20px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-nav.open a {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 15px;
    }

    .main-nav.open a:last-child {
        border-bottom: none;
    }

    .main-nav.open a.active {
        color: var(--color-primary);
    }

    .hero {
        min-height: 500px;
    }

    .hero-inner {
        min-height: 500px;
    }

    .hero-inner,
    .who-we-are-inner,
    .about-overview-inner,
    .mv-grid,
    .akyas-inner,
    .product-detail-layout,
    .featured-post,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .stats-inner,
    .features-grid,
    .categories-grid,
    .values-grid,
    .products-grid,
    .blog-grid-3,
    .blog-grid,
    .info-cards-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .products-sidebar {
        position: static;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .search-box {
        margin-bottom: 12px;
    }

    .filter-group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .filter-group h4 {
        margin-bottom: 0;
        margin-right: 4px;
    }

    .filter-pill {
        display: inline-block;
        padding: 6px 14px;
        margin-bottom: 0;
    }

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

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .page-banner {
        padding: 40px 0 30px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .who-we-are,
    .why-choose-us,
    .product-categories-home,
    .industries,
    .akyas-section,
    .blog-preview,
    .capabilities,
    .core-values,
    .about-overview,
    .mission-vision {
        padding: 50px 0;
    }

    .who-we-are-content h2,
    .why-choose-us .section-title,
    .product-categories-home .section-title,
    .industries .section-title,
    .akyas-content h2,
    .blog-preview .section-title,
    .capabilities .section-title,
    .core-values .section-title,
    .about-overview-content h2,
    .mission-vision .section-title,
    .section-title,
    .contact-form-col h2 {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

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

    .cta-banner {
        background-attachment: scroll;
        padding: 50px 0;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .cta-banner p {
        font-size: 13px;
    }

    .akyas-image img {
        height: 220px;
    }

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

    .about-overview-image img,
    .who-we-are-image img {
        height: 220px;
    }

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

    .value-card {
        padding: 24px 20px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .product-detail-info h1 {
        font-size: 24px;
    }

    .product-detail-layout {
        gap: 30px;
    }

    .related-products .section-title {
        font-size: 24px;
    }

    .main-image img {
        height: 250px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stats-strip {
        height: auto;
        padding: 30px 0;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .stat-number {
        font-size: 26px;
    }

    .featured-post-content h2 {
        font-size: 22px;
    }

    .featured-post-content {
        padding: 24px;
    }

    .blog-filters {
        flex-wrap: wrap;
    }

    .blog-detail-page .breadcrumb {
        font-size: 13px;
    }

    .blog-article h1 {
        font-size: 26px;
    }

    .blog-hero-img img {
        height: 220px;
    }

    .blog-body {
        font-size: 14px;
    }

    .blog-share-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-info-cards {
        padding: 40px 0 0;
    }

    .contact-form-section {
        padding: 40px 0 50px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-text-secondary);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-text-primary);
}

.modal-body {
    padding: 32px;
}

.modal-body h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.modal-body .form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.modal-body .error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        margin: auto;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .modal-body .form-row-2 {
        grid-template-columns: 1fr;
    }

    .modal-body h2 {
        font-size: 24px;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-scale.revealed.category-card,
.reveal-scale.revealed.blog-card,
.reveal-scale.revealed.blog-card-full {
    transition: transform 0.5s ease;
}

.reveal-scale.revealed.category-card:hover,
.reveal-scale.revealed.blog-card:hover,
.reveal-scale.revealed.blog-card-full:hover {
    transform: translateY(-6px);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.reveal-scale.revealed.delay-1,
.reveal-scale.revealed.delay-2,
.reveal-scale.revealed.delay-3,
.reveal-scale.revealed.delay-4 {
    transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
}
