:root {
    --primary-color: #FFBC00;
    --primary-hover: #e5a900;
    --bg-main: #ffffff; /* 60% distribution constraint */
    --bg-alt: #f4f5f7;
    --bg-card: #ffffff;
    --text-main: #111111; /* Black secondary constraint */
    --text-muted: #666666;
    --border-color: #e5e5e5;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --radius: 20px;
    --container-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}
::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Header - Apple Style Glassmorphism */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.sticky {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span { color: var(--primary-color); }

.nav-menu { display: flex; gap: 2.5rem; }

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--text-main); }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a.active::after, .nav-menu a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: var(--bg-alt);
}

.hero-slider { width: 100%; height: 100%; }

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.slide.active img { transform: scale(1); }

.glass-panel {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.glass-panel h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.glass-panel p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 1rem; }

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #111;
    box-shadow: 0 8px 20px rgba(255, 188, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 188, 0, 0.4);
}

.btn-secondary {
    background: var(--text-main);
    color: #fff;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-controls button {
    pointer-events: auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.hero-controls button:hover {
    background: #fff;
    transform: scale(1.05);
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.5);
}

/* Sections */
.section {
    padding: 7rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.bg-alt {
    background: var(--bg-alt);
    max-width: 100%;
}

.bg-alt > * {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Sliders */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: grab;
}

.slider-track:active { cursor: grabbing; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #111;
}

.prev-btn { left: -24px; }
.next-btn { right: -24px; }

/* Clean Minimal Cards */
.card {
    flex: 0 0 calc(25% - 1.5rem);
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    user-select: none;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,0,0,0.1);
}

.card-img {
    width: 100%;
    height: 220px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:hover .card-img img { transform: scale(1.08); }

.card-body { padding: 1.8rem; }

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.card-price {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.card-specs {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 15px;
    margin-bottom: 1.5rem;
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: 12px;
}

.spec-divider { background: var(--border-color); }

.spec-item { text-align: center; }

.spec-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.card-btn {
    width: 100%;
    padding: 0.9rem;
    background: #fff;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.card:hover .card-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #111;
}

/* Brand Cards */
.brand-card {
    flex: 0 0 calc(20% - 1.6rem);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.brand-card h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--text-main);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 7rem 2rem;
    text-align: center;
    background: var(--primary-color);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(17, 17, 17, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons .btn-primary {
    background: #111;
    color: #fff;
    box-shadow: none;
}
.cta-buttons .btn-primary:hover {
    background: #333;
}
.cta-buttons .btn-secondary {
    background: transparent;
    color: #111;
    border: 1px solid #111;
}
.cta-buttons .btn-secondary:hover {
    background: rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    background: var(--bg-main);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links li, .footer-contact li { margin-bottom: 1rem; }

.footer-links a, .footer-contact a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--text-main); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--text-main);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #111;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .card { flex: 0 0 calc(33.333% - 1.333rem); }
    .brand-card { flex: 0 0 calc(25% - 1.5rem); }
}

@media (max-width: 992px) {
    .glass-panel h1 { font-size: 3rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    
    .nav-menu.active { right: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .card { flex: 0 0 calc(50% - 1rem); }
    .brand-card { flex: 0 0 calc(33.333% - 1.333rem); }
    .glass-panel { left: 5%; right: 5%; padding: 2rem; text-align: center; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 576px) {
    .card { flex: 0 0 100%; }
    .brand-card { flex: 0 0 calc(50% - 1rem); }
    .glass-panel h1 { font-size: 2.2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
}

/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

/* Header Override for Internal Pages */
.header.sticky-default {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.sticky-default .nav-menu a {
    color: var(--text-main);
}

/* Contact Hero */
.contact-hero {
    padding: 12rem 2rem 6rem;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Contact Grid Layout */
.contact-section {
    padding: 6rem 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Form Styles */
.contact-form-container h2, 
.contact-info-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 188, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 1.2rem;
    border-radius: 12px;
}

/* Contact Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.info-card .icon {
    font-size: 1.8rem;
    background: rgba(255, 188, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.info-card .details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.info-card .details a, 
.info-card .details span {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.info-card .details a:hover {
    color: var(--primary-color);
}

/* Map */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}
.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 1.5rem;
    }
}

/* =========================================
   SHARED INTERNAL PAGE STYLES
   ========================================= */

.page-hero {
    position: relative;
    padding: 11rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #fff 50%, rgba(255, 188, 0, 0.08) 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 188, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span.separator {
    color: var(--border-color);
}

.breadcrumb span.current {
    color: var(--text-main);
    font-weight: 600;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 188, 0, 0.3);
}

.intro-card .intro-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.intro-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.intro-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Icon Cards */
.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.icon-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.icon-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.icon-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 188, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.icon-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.icon-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission / Vision */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.split-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.split-visual {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.split-visual .visual-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.split-visual h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.65rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Business Info Cards Grid */
.biz-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.biz-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.biz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.biz-card .biz-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.biz-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.biz-card p,
.biz-card a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.biz-card a:hover {
    color: var(--primary-color);
}

/* Form Validation */
.input-error {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1) !important;
}

.spinner-btn {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(17, 17, 17, 0.2);
    border-top-color: #111;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.map-section .map-container {
    height: 400px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* =========================================
   PRODUCTS PAGE STYLES
   ========================================= */

.products-filters {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.filters-row {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.filters-row:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-bar p {
    color: var(--text-muted);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 0, 0, 0.1);
}

.product-card-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.wishlist-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #e53935;
    border-color: #e53935;
    background: #fff;
}

.product-card-img {
    height: 200px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.3rem 0 0.5rem;
    line-height: 1.3;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: 12px;
}

.product-spec {
    display: flex;
    flex-direction: column;
}

.product-spec .spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-spec .spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.product-type-tag {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.product-card-buttons {
    display: flex;
    gap: 0.75rem;
}

.product-card-buttons .card-btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.85rem;
}

.product-card-buttons .btn-primary {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

.load-more-wrap .hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-muted);
}

/* Product Modal */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
}

.modal-image-wrap {
    background: var(--bg-alt);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-wrap img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.modal-details {
    padding: 2.5rem;
}

.modal-details h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.modal-brand {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.modal-type {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
    background: var(--bg-alt);
    padding: 1.2rem;
    border-radius: 12px;
}

.modal-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-spec-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-spec-item strong {
    font-size: 0.95rem;
}

.modal-details p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-features {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-features li {
    margin-bottom: 0.4rem;
}

/* Responsive - Internal Pages */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .filters-row { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
    .intro-grid { grid-template-columns: repeat(2, 1fr); }
    .icon-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .biz-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 9rem 1.5rem 4rem; }
    .page-hero h1 { font-size: 2.8rem; }
    .intro-grid { grid-template-columns: 1fr; }
    .icon-cards-grid { grid-template-columns: 1fr; }
    .filters-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .biz-cards-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .filters-row { grid-template-columns: 1fr; }
    .product-card-buttons { flex-direction: column; }
}