/* 
   Master Stylesheet for Vaajsan Industries Copy Website
   Theme: Modern Industrial Premium - Slate Blue, Light Grey, and Amber Orange (Light Theme)
*/

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

:root {
    --bg-dark: #1F2937;             /* Charcoal dark backgrounds */
    --bg-body: #F8FAFC;             /* Off-white page backgrounds */
    --bg-card: #FFFFFF;             /* Pure white card backgrounds */
    --bg-card-hover: #FFFFFF;
    
    --primary: #D5F2C9;             /* Soft Light Green (from image) */
    --primary-dark: #16A34A;             /* Primary Green */
    --primary-hover: #C2E7B5;
    --primary-glow: rgba(213, 242, 201, 0.45);
    --secondary: #B5179E;           /* Purple Accent */
    --success: #16A34A;             /* Green success indications */
    --text-main: #222222;           /* Text Dark */
    --text-muted: #52525B;          /* Zinc-600 body text for high readability */
    --text-light: #ffffff;          /* White text */
    --text-light-muted: #94A3B8;    /* Slate-400 text on dark sections */
    --text-dark: #111827;
    --border-color: rgba(31, 41, 55, 0.08); /* Soft borders */
    --border-light: rgba(31, 41, 55, 0.06);
    --glass: rgba(255, 255, 255, 0.95);    /* Header Light Glass overlay */
    --glass-blur: blur(12px);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(31, 34, 48, 0.03);
    --shadow-md: 0 8px 30px rgba(31, 34, 48, 0.05);
    --shadow-lg: 0 20px 50px rgba(31, 34, 48, 0.08);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

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

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

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #E5E7EB;
}
::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utilities */
.container {
    width: 85%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

.section-subtitle {
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-dark);
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

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

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

/* Header & Navigation */
.topbar {
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-light-muted);
    padding: 10px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--primary-dark);
}

.topbar-right a {
    margin-left: 15px;
    font-size: 14px;
    color: var(--text-light-muted);
}

.topbar-right a:hover {
    color: var(--primary-dark);
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-main.shrink {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 95px;
    max-height: 95px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Sidebar Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary-dark);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(31, 34, 48, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide.active .hero-slide-bg {
    animation: zoomBg 15s ease-out infinite alternate;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 34, 48, 0.75) 0%, rgba(31, 34, 48, 0.4) 100%);
    z-index: 3;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 10;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-subtitle {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-subtitle::before {
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    display: inline-block;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: capitalize;
    color: var(--text-light);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

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

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
    border-color: #ffffff;
}

.hero-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 12;
}

.hero-dot {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 65px;
}

.hero-dot .dot-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.hero-dot .dot-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.hero-dot .dot-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0s linear;
}

.hero-dot.active .dot-num {
    color: var(--primary-dark);
}

.hero-dot.active .dot-bar::after {
    width: 100%;
    transition: width 6s linear;
}

@keyframes zoomBg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

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

/* Feature Cards Section */
.features-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding-bottom: 80px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 35px 25px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(31, 34, 48, 0.015);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 143, 39, 0.35);
    box-shadow: 0 15px 35px rgba(31, 34, 48, 0.06);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255, 143, 39, 0.06);
    border: 1px solid rgba(255, 143, 39, 0.12);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: scale(1.05);
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* About Intro Section */
.about-intro-img-wrap {
    position: relative;
}

.about-intro-img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.experience-years {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-text {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-check-list {
    margin-bottom: 35px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-check-item i {
    color: var(--primary-dark);
}

/* Statistics Counters */
.stats-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    color: var(--text-light);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Products Grid */
.products-section {
    background-color: var(--bg-body);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #E5E7EB;
}

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

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

.product-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-detail-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-detail-link i {
    color: var(--primary-dark);
    transition: var(--transition);
}

.product-card:hover .product-detail-link i {
    transform: translateX(5px);
}

/* Testimonials Layout */
.testimonials-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-card {
    background-color: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    color: rgba(255, 143, 39, 0.1);
    font-family: serif;
    z-index: -1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-dark);
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.cta-desc {
    color: var(--text-light-muted);
    font-size: 15px;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    font-size: 14px;
    color: var(--text-light-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 95px;
    max-height: 95px;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: rotate(360deg);
}

.footer-title {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-light-muted);
}

.footer-menu a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--primary-dark);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--primary-dark);
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 34, 48, 0.85);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-light);
}

.breadcrumbs {
    display: inline-flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a {
    color: var(--text-light-muted);
}

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

.breadcrumbs span {
    color: var(--primary-dark);
}

/* About Page Styles */
.about-mission-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.mission-card {
    padding: 40px;
    background-color: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-dark);
}

.mission-card i {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
}

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

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.product-detail-img-wrap {
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    background-color: var(--bg-card);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

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

.product-detail-meta {
    margin-top: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 700;
    color: var(--primary-dark);
}

.meta-val {
    color: var(--text-main);
    font-weight: 500;
}

.product-detail-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.product-detail-category {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.detail-tab-container {
    margin-top: 40px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    gap: 30px;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 0;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-dark);
}

.tab-btn.active {
    color: var(--primary-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
}

.tab-content {
    display: none;
    animation: fadeEffect 0.5s ease-in-out;
}

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

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

/* Inquiry Form */
.inquiry-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.inquiry-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 143, 39, 0.15);
}

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

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #DEF7EC;
    border: 1px solid #BCF0DA;
    color: #03543F;
}

.alert-error {
    background-color: #FDE8E8;
    border: 1px solid #FBD5D5;
    color: #9B1C1C;
}

/* Contact Page */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-dark);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 143, 39, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-text {
    color: var(--text-muted);
}

.map-container {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .topbar {
        display: none;
    }
    .section-title {
        font-size: 30px;
    }
    .hero-title {
        font-size: 38px;
    }
    .cta-wrap {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Products Sidebar Layout */
.products-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.products-sidebar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.015);
}

.products-sidebar-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 10px;
    color: var(--text-main);
}

.products-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.products-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.products-cat-link:hover, .products-cat-link.active {
    color: var(--primary-dark);
}

.products-cat-link i {
    font-size: 10px;
    opacity: 0.6;
    transition: var(--transition);
}

.products-cat-link:hover i, .products-cat-link.active i {
    transform: translateX(4px);
    opacity: 1;
}

.products-sidebar-cta {
    background-color: var(--bg-dark);
    color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-sidebar-cta .cta-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
}

.products-sidebar-cta p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.products-sidebar-assistance {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.015);
}

.products-assistance-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.12);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .products-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
