/* ===================================
   AGRO BUSINESS - Main Stylesheet
   =================================== */

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

:root {
    --primary-color: #2d7d46;
    --primary-dark: #1e5631;
    --secondary-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
}

.logo .site-logo-image {
    max-height: 52px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 100px 20px;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.3s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1.6s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 8rem;
    color: white;
}

/* Products Section */
.products-section,
.services-section {
    padding: 80px 20px;
}

.products-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card,
.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image,
.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i,
.service-icon i {
    font-size: 4rem;
    color: white;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

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

.product-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-info,
.service-card > * {
    padding: 1.5rem;
}

.product-info h3,
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-info p,
.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-view,
.btn-inquiry {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-view:hover,
.btn-inquiry:hover {
    background: var(--primary-dark);
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    gap: 1rem;
    transition: gap 0.3s;
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-image {
    max-height: 54px;
    width: auto;
    display: block;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.contact-info li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Products Page */
.products-page {
    padding: 60px 20px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

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

/* Category Details Page */
.category-details-section {
    padding: 60px 20px;
}

.category-details-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: white;
}

.category-list a i {
    font-size: 1.1rem;
    width: 20px;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.info-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Main */
.products-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-description-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.category-description-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-description-box p {
    color: var(--text-light);
    line-height: 1.8;
}

.products-header {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-header h2 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.products-header h2 i {
    color: var(--primary-color);
}

.products-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.no-results i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Related Categories Section */
.related-categories-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

/* Product Detail Page */
.product-detail-section {
    padding: 60px 20px 30px;
    background:
        radial-gradient(circle at top left, rgba(244, 162, 97, 0.15), transparent 30%),
        linear-gradient(180deg, #f5faf6 0%, #ffffff 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
}

.product-gallery-card,
.product-summary-card,
.product-tabs-card {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.product-gallery-card {
    padding: 1.25rem;
}

.product-gallery-stage {
    min-height: 460px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ecf6ee 0%, #d8eadc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(45, 125, 70, 0.12);
}

.product-gallery-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-placeholder {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--primary-dark);
    text-align: center;
    padding: 2rem;
}

.product-gallery-placeholder i {
    font-size: 4.5rem;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.product-gallery-thumb {
    width: 88px;
    height: 88px;
    flex: 0 0 auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.product-summary-card {
    padding: 2rem;
}

.product-summary-eyebrow {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-summary-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-badge-category {
    background: rgba(45, 125, 70, 0.12);
    color: var(--primary-dark);
}

.product-badge-featured {
    background: rgba(244, 162, 97, 0.18);
    color: #a26018;
}

.product-summary-card h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-summary-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.02rem;
}

.product-highlight-box {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 125, 70, 0.12);
    background: linear-gradient(135deg, rgba(45, 125, 70, 0.08), rgba(244, 162, 97, 0.1));
}

.product-highlight-box h3 {
    margin-bottom: 0.85rem;
    color: var(--primary-dark);
}

.product-highlight-box ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.product-highlight-box li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-dark);
}

.product-highlight-box li::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--secondary-color);
}

.product-quick-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.product-quick-spec {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(45, 125, 70, 0.12);
    background: #f7faf7;
}

.product-quick-spec span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-quick-spec strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.product-quick-spec small {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-light);
}

.product-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-tabs-section {
    padding: 20px 20px 60px;
    background: radial-gradient(circle at bottom right, rgba(244, 162, 97, 0.16), transparent 25%);
}

.product-tabs-card {
    padding: 1.25rem;
}

.product-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(45, 125, 70, 0.12);
}

.product-tab-button {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.25rem;
    background: #f1f6f2;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-tab-button:hover,
.product-tab-button.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 24px rgba(45, 125, 70, 0.22);
}

.product-tab-panels {
    padding-top: 1.5rem;
}

.product-tab-panel h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.6rem;
}

.product-tab-copy {
    display: grid;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.product-tab-copy p {
    margin: 0;
}

.product-tab-copy ul {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.product-empty-state {
    font-style: italic;
}

.related-products-section {
    padding: 0 20px 80px;
}

.product-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-sidebar {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.products-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-filter {
    list-style: none;
}

.category-filter li {
    margin-bottom: 0.5rem;
}

.category-filter a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--primary-color);
    color: white;
}

/* Services Page */
.services-detailed-grid {
    padding: 60px 20px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.service-detailed-card.reversed {
    grid-template-columns: 1fr 150px;
}

.service-detailed-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.service-detailed-icon i {
    font-size: 4rem;
    color: white;
}

.service-detailed-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detailed-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--success-color);
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* About Page */
.about-page {
    padding: 60px 20px;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-page-content h2 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.about-page-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-page-image .image-placeholder {
    height: 500px;
}

/* Values Section */
.values-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 60px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.member-avatar i {
    font-size: 3rem;
    color: white;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.stats-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
}

/* Contact Page */
.contact-page {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-light);
}

.social-connect h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Map Section */
.map-section {
    padding: 40px 20px;
    background: var(--bg-light);
}

.map-container {
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-link {
    padding: 1.5rem;
    text-align: center;
}

.map-placeholder {
    background: var(--bg-white);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

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

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Text Align */
.text-center {
    text-align: center;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-page-grid {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        order: 2;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .category-details-grid {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-quick-specs,
    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-section,
    .products-section,
    .services-section {
        padding: 60px 20px;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card .product-info,
    .service-card > * {
        padding: 1rem;
    }

    .product-info h3,
    .service-card h3 {
        font-size: 1.1rem;
    }

    .product-info p,
    .service-card p {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .service-detailed-card,
    .service-detailed-card.reversed {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

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

    .product-gallery-stage,
    .product-gallery-placeholder {
        min-height: 320px;
    }

    .product-tabs-card,
    .product-summary-card,
    .product-gallery-card {
        border-radius: 20px;
    }

    .product-tab-nav {
        flex-direction: column;
    }

    .product-tab-button {
        width: 100%;
        text-align: left;
    }

    .product-quick-specs,
    .product-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    .product-gallery-stage,
    .product-gallery-placeholder {
        min-height: 260px;
    }

    .product-summary-card {
        padding: 1.5rem;
    }

    .product-tab-panel h3 {
        font-size: 1.35rem;
    }
}

/* ===================================
   FEATURED BRANDS & PRODUCTS SECTION
   =================================== */

.brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-section .section-header h2 {
    color: white;
    margin-bottom: 10px;
}

.brands-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Brands Carousel */
.brands-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 50px;
}

.brands-carousel {
    display: flex;
    gap: 20px;
    animation: scroll-carousel 30s linear infinite;
    width: max-content;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-card {
    flex-shrink: 0;
    width: 180px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.brand-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 3rem;
}

.brand-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

/* Featured Products Grid */
.featured-products-grid {
    margin-top: 40px;
}

.grid-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.products-carousel .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products-carousel .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.products-carousel .product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-carousel .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-carousel .product-card:hover .product-image img {
    transform: scale(1.1);
}

.products-carousel .product-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.product-brand {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.products-carousel .product-info {
    padding: 20px;
}

.products-carousel .product-info h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.products-carousel .product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.products-carousel .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Brands Section Responsive */
@media (max-width: 1024px) {
    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 50px 0;
    }

    .brand-card {
        width: 140px;
        padding: 15px;
    }

    .brand-image {
        width: 90px;
        height: 90px;
    }

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

    .grid-title {
        font-size: 1.5rem;
    }
}
