:root {
    --color-graphite: #2E2E2E;
    --color-orange: #FF6B35;
    --color-orange-hover: #E85A25;
    --color-white: #F4F4F4;
    --color-pure-white: #FFFFFF;
    --color-dark-gray: #1A1A1A;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: 'MahinShefa';
    src: url('/assets/Fonts/FN_Mahin_Shefa_Unicode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-graphite);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.accent {
    color: var(--color-orange);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--color-dark-gray);
    letter-spacing: -1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    border-radius: 3px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;
    background: rgba(46, 46, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.logo {
    color: var(--color-pure-white);
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-pure-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--color-orange);
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: var(--color-dark-gray);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 5;
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slide-btn {
    background: rgba(255, 107, 53, 0.7);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slide-btn:hover {
    background: var(--color-orange);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.hero-slide.active .hero-content {
    animation: fadeInUp 1s ease-out;
}

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

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--color-pure-white);
    color: var(--color-dark-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--color-orange);
    min-width: 320px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.error {
    border-left-color: #E53935;
}
.toast.error .toast-icon {
    background: rgba(229, 57, 53, 0.1);
    color: #E53935;
}

.toast-icon {
    background: rgba(255,107,53,0.1);
    color: var(--color-orange);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: 3rem;
    color: var(--color-pure-white);
    line-height: 1.05;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0.9;
    font-weight: 300;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-between;
    padding: 4rem 10%;
    background-color: var(--color-pure-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 20;
    margin-top: -40px;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    stroke-width: 2;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark-gray);
    letter-spacing: 0.5px;
}

.trust-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* About Us Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 8rem 10%;
    background-color: var(--color-pure-white);
}

.about-content {
    flex: 1;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 5rem 6%;
    }
    .about-content .section-header {
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.mv-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 8px;
    border-left: 4px solid var(--color-orange);
    transition: var(--transition-fast);
}

.mv-box:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.mv-icon svg {
    width: 26px;
    height: 26px;
}

.mv-title {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.mv-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.values-container {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 10%;
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-pure-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Find Us Section */
.find-us-section {
    padding: 8rem 10% 4rem;
    background-color: var(--color-pure-white);
}

.find-us-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.map-info {
    flex: 1;
}

.map-info .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.location-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.location-text h4 {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    margin-bottom: 0.3rem;
    text-transform: none;
}

.location-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-container {
    flex: 1.5;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #EEE;
}

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

@media (max-width: 992px) {
    .find-us-container {
        flex-direction: column;
        gap: 3rem;
    }
    .map-info .section-header {
        text-align: center;
    }
    .location-details {
        align-items: center;
        text-align: center;
    }
    .map-container {
        width: 100%;
    }
}

/* Products Section */
.products {
    padding: 8rem 10% 6rem;
    background-color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-pure-white);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.product-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.hover-overlay-tech {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
    pointer-events: none;
}

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

.product-card:hover .hover-overlay-tech {
    opacity: 1;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-img-wrapper::after {
    opacity: 1;
}

.product-info {
    padding: 2.5rem;
    position: relative;
    z-index: 10;
    background: var(--color-pure-white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark-gray);
}

.tech-specs {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    border-top: 1px solid #EAEAEA;
    padding-top: 0;
    margin-top: 0;
}

.tech-specs span {
    display: flex;
    align-items: center;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.tech-specs span:nth-child(1) { transition-delay: 0.1s; }
.tech-specs span:nth-child(2) { transition-delay: 0.15s; }
.tech-specs span:nth-child(3) { transition-delay: 0.2s; }

.tech-specs span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-orange);
    margin-right: 12px;
}

.product-card:hover .tech-specs {
    max-height: 250px;
    opacity: 1;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.product-card:hover .tech-specs span {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery Section */
.gallery {
    padding: 6rem 5% 8rem;
    background-color: var(--color-dark-gray);
    color: var(--color-pure-white);
}

.gallery .section-header h2 {
    color: var(--color-pure-white);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-pure-white);
    padding: 10px 24px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 40px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-pure-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    background: #333;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}

.masonry-item:nth-child(1) { grid-row: span 2; grid-column: span 2;}
.masonry-item:nth-child(2) { grid-row: span 1; }
.masonry-item:nth-child(4) { grid-row: span 2; grid-column: span 1;}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover .img-placeholder {
    transform: scale(1.05);
}

.masonry-item:hover .gallery-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Admin Dashboard Preview */
.admin-preview {
    padding: 10rem 0;
    background-image: url('assets/images/admin_bg.png');
    background-color: var(--color-graphite);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.admin-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.admin-parallax-wrapper {
    position: relative;
    max-width: 1100px;
    height: 600px; /* fixed height for 3D effect constraints */
    margin: 0 auto;
    perspective: 1500px;
}

.admin-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: rotateX(8deg) rotateY(0deg) scale(0.95);
    transition: transform 0.1s linear; /* Responsive to fast JS updating */
}

/* We'll use JS to animate, but add smooth fallback for no-js hover */

.dash-header {
    background: rgba(25, 25, 25, 0.9);
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dash-title {
    font-family: var(--font-heading);
    color: var(--color-pure-white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.dash-user {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

.dash-body {
    display: flex;
    height: calc(100% - 66px);
}

.dash-sidebar {
    width: 240px;
    background: rgba(20, 20, 20, 0.6);
    padding: 2.5rem 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.dash-sidebar ul {
    list-style: none;
}

.dash-sidebar li {
    padding: 1rem 2.5rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.dash-sidebar li:hover {
    color: rgba(255,255,255,0.9);
}

.dash-sidebar li.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.15), transparent);
    color: var(--color-orange);
    border-left: 3px solid var(--color-orange);
}

.dash-main {
    flex: 1;
    padding: 2.5rem;
}

.dash-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    flex: 1;
    background: rgba(40, 40, 40, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--color-orange);
    opacity: 0;
    transition: var(--transition-fast);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card h4 {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-pure-white);
    line-height: 1;
}

.stat-trend {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-trend.positive { color: #4CAF50; }
.stat-trend.neutral { color: #9E9E9E; }

.dash-chart {
    background: rgba(40, 40, 40, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    gap: 1.5rem;
}

.chart-bar {
    flex: 1;
    height: 100%;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill.accent {
    background: linear-gradient(180deg, var(--color-orange), #C94A1C);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.upload-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-fast);
    cursor: pointer;
}

.upload-slot:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(255, 107, 53, 0.05);
}

.upload-slot svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

/* Query Module (Sidebar) */
.quote-sidebar {
    position: fixed;
    top: 0; right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--color-pure-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.quote-sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: var(--color-graphite);
    color: var(--color-pure-white);
}

.sidebar-header h3 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--color-pure-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-orange);
}

.quote-form {
    padding: 2.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: #F9F9F9;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-orange);
    background: var(--color-pure-white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Footer */
.footer {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 6rem 10% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

.footer-col h4 {
    color: var(--color-pure-white);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
}

.brand-col .logo {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.brand-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 320px;
    line-height: 1.7;
}

.social-links { display: flex; gap: 1rem; }
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    color: var(--color-pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.social-links a:hover { 
    background: var(--color-orange); 
    transform: translateY(-4px); 
    box-shadow: 0 5px 15px rgba(255,107,53,0.3); 
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}
.footer-col ul a:hover { 
    color: var(--color-orange); 
    transform: translateX(6px); 
}

.contact-info li { 
    display: flex; 
    gap: 12px; 
    color: rgba(255,255,255,0.6); 
    font-size: 0.95rem; 
    margin-bottom: 1.2rem; 
}
.contact-info span { color: var(--color-orange); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .nav-links { gap: 1.5rem; }
    .trust-indicators { margin-left: 5%; margin-right: 5%; flex-wrap: wrap; }
    .trust-item { flex: 1 1 50%; border-right: none; margin-bottom: 2rem; }
    .admin-parallax-wrapper { max-width: 90%; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn { display: block; }
    .navbar { padding: 1.2rem 5% !important; }
    .navbar .btn-primary { display: none; }
    .mobile-only { display: block; padding: 0 2rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .product-grid { grid-template-columns: 1fr; }
    .trust-item { flex: 1 1 100%; }
    .quote-sidebar { width: 100%; right: -100%; }
    .admin-parallax-wrapper { height: 750px; }
    .dash-body { flex-direction: column; }
    .dash-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 0; }
    .dash-sidebar ul { display: flex; overflow-x: auto; }
    .dash-sidebar li { padding: 1rem; white-space: nowrap; }
    .footer { padding: 4rem 5% 2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .brand-col p { margin: 0 auto 1.8rem; }
    .social-links { justify-content: center; }
    .contact-info li { justify-content: center; }
    
    .toast-container { right: 5%; bottom: 20px; left: 5%; align-items: center; }
    .toast { min-width: unset; width: 100%; padding: 1rem; }
    .slider-controls { bottom: 20px; right: 5%; transform: scale(0.8); }
}

/* Marque Text animation */
.marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #ff6a00, #ff8c00);
    padding: 10px 0;
    position: relative;
    top: 20px;
    z-index: 999;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-text {
    font-family: 'MahinShefa', sans-serif;
    /*font-weight: 700;*/
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #fff;
    /*text-shadow: 0 2px 6px rgba(0,0,0,0.3);*/
}
