/*
Theme Name: Swift Agro
Theme URI: https://swiftsolutionsagro.com
Author: GSEN IT
Author URI: https://gsenit.org
Description: Professional Agricultural Company WordPress Theme for Swift Solutions Agro. Built with Bootstrap 5, Owl Carousel, and Font Awesome icons. Responsive, modern, and fully customizable.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: agriculture, green, business, responsive, bootstrap
Text Domain: swift-agro
*/

/* ============================================================
   SWIFT SOLUTIONS AGRO — MAIN STYLESHEET
   Primary: #018646 | Secondary: #1da160 | Dark: #0d2b1e
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
    --primary: #018646;
    --primary-dark: #016535;
    --primary-light: #1da160;
    --secondary: #f5a623;
    --dark: #0d2b1e;
    --dark-2: #1a3c2e;
    --light-bg: #f4faf6;
    --light-green: #e8f5ee;
    --text-dark: #1c1c1c;
    --text-muted: #6b7b6e;
    --white: #ffffff;
    --border: #d4e8da;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(1, 134, 70, 0.12);
    --shadow-lg: 0 8px 40px rgba(1, 134, 70, 0.18);
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

ul { list-style: none; padding: 0; margin: 0; }

/* === PRELOADER === */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
#preloader .spinner {
    width: 48px; height: 48px;
    border: 4px solid var(--light-green);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === TOP NOTICE BAR === */
.top-notice-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.top-notice-bar .marquee-wrapper { overflow: hidden; white-space: nowrap; }
.top-notice-bar .marquee-text {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}
.top-notice-bar .contact-info a {
    color: rgba(255,255,255,0.9);
    margin-left: 20px;
    font-size: 13px;
}
.top-notice-bar .contact-info a:hover { color: var(--white); }
.top-notice-bar .contact-info i { margin-right: 5px; }

/* === HEADER / NAVIGATION === */
.header-area {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
.header-area.scrolled {
    box-shadow: 0 4px 30px rgba(1,134,70,0.15);
}
.navbar-brand img { max-height: 65px; width: auto; }

.navbar { padding: 12px 0; }

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--dark) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--light-green);
}

/* Dropdown */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 200px;
    animation: dropDown 0.2s ease;
}
@keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary);
}
.navbar-nav .dropdown-item i { margin-right: 8px; color: var(--primary); }

.nav-cta-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 8px;
    box-shadow: 0 4px 14px rgba(1,134,70,0.3);
}
.nav-cta-btn:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}
.nav-cta-btn::after { display: none !important; }

/* === HERO SLIDER === */
.hero-section { position: relative; overflow: hidden; }

.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,43,30,0.82) 0%, rgba(1,134,70,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.hero-content .badge-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--secondary); }
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin-bottom: 35px;
}
.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(1,134,70,0.4);
}
.hero-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(1,134,70,0.5);
}
.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
    margin-left: 12px;
}
.hero-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Owl Controls */
.hero-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    color: var(--white) !important;
    font-size: 20px !important;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero-section .owl-nav button:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
.hero-section .owl-nav .owl-prev { left: 20px; }
.hero-section .owl-nav .owl-next { right: 20px; }
.hero-section .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-section .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
    width: 10px !important; height: 10px !important;
}
.hero-section .owl-dot.active span {
    background: var(--white) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* === SECTION STYLES === */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-title { margin-bottom: 50px; }
.section-title .subtitle {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 14px;
}
.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.section-title h2 span { color: var(--primary); }
.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* === ABOUT SECTION === */
.about-section { background: var(--white); }

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrapper img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; }
.about-img-badge {
    position: absolute;
    bottom: 24px; right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}
.about-img-badge .years { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-img-badge .label { font-size: 12px; font-weight: 500; opacity: 0.9; }

.about-content { padding-left: 40px; }
.about-content p { color: var(--text-muted); font-size: 1rem; margin-bottom: 16px; }

.about-features { margin: 28px 0; }
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.feature-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}
.about-feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(5deg);
}
.feature-text h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: var(--text-muted); margin: 0; }

.btn-primary-green {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(1,134,70,0.3);
}
.btn-primary-green:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(1,134,70,0.3);
}
.btn-outline-green {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-outline-green:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* === STATS COUNTER === */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 1;
}
.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}
.stat-card .stat-icon {
    width: 70px; height: 70px;
    background: rgba(1,134,70,0.2);
    border: 2px solid rgba(1,134,70,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary-light);
    transition: var(--transition);
}
.stat-card:hover .stat-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card .stat-number span { color: var(--secondary); }
.stat-card .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    height: 80px;
    align-self: center;
}

/* === PRODUCTS SECTION === */
.products-section { background: var(--light-bg); }

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.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.08); }
.product-card-img .product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
}
.product-card-body { padding: 24px; }
.product-card-body h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.product-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.product-card-footer a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex; align-items: center; gap: 6px;
}
.product-card-footer a:hover { gap: 10px; }
.product-card-footer a i { transition: transform 0.2s ease; }
.product-card-footer a:hover i { transform: translateX(3px); }

/* === WHY CHOOSE US === */
.why-section { background: var(--white); }

.why-card {
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: height 0.4s ease;
    z-index: 0;
}
.why-card:hover::before { height: 100%; }
.why-card > * { position: relative; z-index: 1; }

.why-card .why-icon {
    width: 72px; height: 72px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.why-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 10px; transition: color 0.3s; }
.why-card:hover h5 { color: var(--white); }
.why-card p { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.why-card:hover p { color: rgba(255,255,255,0.85); }

/* === GALLERY PREVIEW === */
.gallery-section { background: var(--light-bg); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(1,134,70,0.8) 0%, rgba(13,43,30,0.85) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: var(--white); }
.gallery-item.large { grid-row: span 1; aspect-ratio: 1/1; }

/* === DISTRIBUTION SECTION === */
.distribution-section { background: var(--white); }

.dist-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px 28px;
    border: 2px solid var(--border);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}
.dist-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
.dist-card .dist-icon {
    width: 68px; height: 68px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--white);
}
.dist-card h4 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.dist-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

/* === TESTIMONIALS === */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 90px 0;
}
.testimonials-section .section-title .subtitle { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.testimonials-section .section-title h2 { color: var(--white); }
.testimonials-section .section-title p { color: rgba(255,255,255,0.7); }

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(8px);
    margin: 10px;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(1,134,70,0.5);
    transform: translateY(-5px);
}
.testimonial-stars { color: var(--secondary); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}
.testimonial-author .author-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-author .author-title { font-size: 12px; color: rgba(255,255,255,0.6); }

/* === CTA BANNER === */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h2 { font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 0; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }

/* === FOOTER === */
.footer-section {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.75);
}
.footer-logo { max-height: 65px; width: auto; margin-bottom: 20px; }
.footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-widget-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 16px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact-item { display: flex; gap: 14px; margin-bottom: 16px; }
.footer-contact-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    background: rgba(1,134,70,0.2);
    border: 1px solid rgba(1,134,70,0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 15px;
}
.footer-contact-text .label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-contact-text a, .footer-contact-text span { font-size: 14px; color: rgba(255,255,255,0.75); display: block; transition: var(--transition); }
.footer-contact-text a:hover { color: var(--primary-light); }

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--primary-light); }

/* === PAGE BANNER === */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.breadcrumb-item { font-size: 14px; }
.breadcrumb-item a { color: var(--primary-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* === ABOUT PAGE === */
.mission-vision-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 36px 30px;
    border-left: 4px solid var(--primary);
    height: 100%;
    transition: var(--transition);
}
.mission-vision-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mission-vision-card .mv-icon {
    font-size: 2.5rem; color: var(--primary); margin-bottom: 16px;
}
.mission-vision-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.mission-vision-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 260px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 24px; }
.team-card-body h5 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card-body .role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-card-body p { font-size: 13px; color: var(--text-muted); }

/* === CONTACT PAGE === */
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-bottom: 4px solid var(--primary);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card .contact-icon {
    width: 70px; height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}
.contact-card:hover .contact-icon { background: var(--primary); color: var(--white); }
.contact-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.contact-form-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.contact-form-card .subtitle-text { color: var(--text-muted); font-size: 15px; margin-bottom: 30px; }
.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--light-bg);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(1,134,70,0.12);
    background: var(--white);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 6px; }

/* === GALLERY PAGE === */
.gallery-filter .btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--text-muted);
    background: var(--white);
    transition: var(--transition);
    margin: 4px;
}
.gallery-filter .btn.active,
.gallery-filter .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* === MAP === */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === DEALER TABLE === */
.dealer-table-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dealer-search-bar { padding: 24px; border-bottom: 1px solid var(--border); background: var(--light-bg); }
.table { margin: 0; }
.table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 16px;
    border: none;
}
.table tbody td { padding: 12px 16px; font-size: 14px; vertical-align: middle; border-color: var(--border); }
.table tbody tr:hover { background: var(--light-green); }
.dealer-badge {
    background: var(--light-green);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* === PAGINATION === */
.pagination .page-link {
    border: 2px solid var(--border);
    color: var(--primary);
    border-radius: var(--radius) !important;
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 600;
    transition: var(--transition);
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(1,134,70,0.3);
}

/* === SCROLL TO TOP === */
#scrollTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(1,134,70,0.4);
    transition: var(--transition);
    z-index: 998;
}
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.animated { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.animated { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.animated { opacity: 1; transform: translateX(0); }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .section-pad { padding: 60px 0; }
    .about-content { padding-left: 0; margin-top: 30px; }
    .hero-slide { min-height: 420px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-btn-outline { margin-left: 0; margin-top: 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-divider { display: none; }
    .cta-section { text-align: center; }
    .cta-section .text-md-end { text-align: center !important; margin-top: 24px; }
    .navbar-collapse { background: var(--white); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 10px; }
    .nav-cta-btn { margin-left: 0; margin-top: 8px; }
}

@media (max-width: 767px) {
    .hero-slide { min-height: 340px; }
    .hero-content h1 { font-size: 1.7rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-section { padding-top: 50px; }
    .about-img-wrapper img { height: 280px; }
    .about-img-badge { bottom: 14px; right: 14px; padding: 14px 16px; }
    .about-img-badge .years { font-size: 1.8rem; }
    .cta-section h2 { font-size: 1.7rem; }
    .page-banner h1 { font-size: 1.8rem; }
    .contact-form-card { padding: 24px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-slide { min-height: 300px; }
    .hero-content { padding: 50px 0; }
}
