/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Colors - Vibrant Premium Theme */
    --clr-primary: #2563eb;
    /* Royal Blue */
    --clr-primary-dark: #1e40af;
    --clr-secondary: #0f172a;
    /* Slate 900 */
    --clr-accent: #3b82f6;

    --clr-bg: #f8fafc;
    /* Slate 50 */
    --clr-bg-alt: #f1f5f9;
    /* Slate 100 */
    --clr-surface: #ffffff;
    --clr-surface-glass: rgba(255, 255, 255, 0.7);

    --clr-text: #334155;
    /* Slate 700 */
    --clr-heading: #0f172a;
    /* Slate 900 */

    --clr-whatsapp: #25D366;
    --clr-phone: #2563eb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Shadows - Deep & Premium */
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);

    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radii */
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.bg-alt {
    background-color: var(--clr-bg-alt);
}

.highlight {
    color: var(--clr-primary);
}

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--trans-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

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

.btn-whatsapp-outline {
    background-color: transparent;
    color: var(--clr-whatsapp);
    border: 1px solid var(--clr-whatsapp);
}

.btn-whatsapp-outline:hover {
    background-color: var(--clr-whatsapp);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* =========================================
   NAVIGATION (Glassmorphism & Dropdown)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--trans-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-secondary);
}

.logo-icon {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links>li {
    position: relative;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    color: var(--clr-text);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--trans-fast);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--clr-primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--trans-fast);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--clr-surface);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--trans-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links>li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: var(--clr-text);
    width: 100%;
}

.dropdown-menu a::after {
    display: none;
    /* remove underline effect for dropdown */
}

.dropdown-menu a:hover {
    background: var(--clr-bg-alt);
    color: var(--clr-primary);
    padding-left: 1.75rem !important;
    /* Slide right effect */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-heading);
    cursor: pointer;
}

/* =========================================
   INTERIOR PAGE HEADER
   ========================================= */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#bae6fd 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--clr-primary);
}

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

/* =========================================
   PAGE CONTENT (About, Contact, Services)
   ========================================= */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.content-img {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    box-shadow: var(--shadow-md);
}

.content-text h2 {
    margin-bottom: var(--space-md);
    font-size: 2rem;
}

.content-text p {
    margin-bottom: var(--space-md);
    color: #475569;
}

.contact-form {
    background: var(--clr-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--trans-normal);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* =========================================
   HERO SECTION (Home)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero_banner.png') center/cover no-repeat;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    /* Dark overlay */
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: var(--space-lg);
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--clr-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--trans-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--trans-normal);
    z-index: -1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: transparent;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .icon-wrapper {
    color: var(--clr-primary);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

/* =========================================
   PRODUCTS SECTION (CATALOG)
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.product-img-placeholder {
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
}

.product-info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.product-info p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.product-info .btn {
    width: 100%;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--clr-secondary);
    color: #f1f5f9;
    padding-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    color: white;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
}

.footer h3 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

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

.footer-links a {
    color: #94a3b8;
    transition: var(--trans-fast);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.contact-info i {
    color: var(--clr-primary);
    margin-top: 5px;
}

.footer-bottom {
    background: #0b1120;
    padding: var(--space-md) 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================================
   FLOATING ACTION BUTTONS (FAB)
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-glass);
    transition: var(--trans-normal);
    position: relative;
}

.fab-whatsapp {
    background-color: var(--clr-whatsapp);
    animation: pulse-whatsapp 2s infinite;
}

.fab-phone {
    background-color: var(--clr-phone);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-tooltip {
    position: absolute;
    right: 75px;
    background: var(--clr-heading);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-fast);
    white-space: nowrap;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--clr-heading);
}

.fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--clr-surface);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--trans-normal);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links>li {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        display: none;
        border: none;
    }

    .nav-links>li.mobile-dropdown-open .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Center the phone button on mobile */
    .fab-phone {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .fab-phone:hover {
        transform: translateX(-50%) scale(1.1);
    }

    .fab-tooltip {
        display: none;
    }
}

/* =========================================
   STATISTICS & GLASS CARDS
   ========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.glass-card {
    background: var(--clr-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glass);
    transition: var(--trans-normal);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: var(--trans-slow);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.8);
}

.glass-card:hover::before {
    left: 200%;
}

.stat-card i {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--clr-heading);
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.stat-card p {
    color: var(--clr-text);
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================================
   ZORCHEM THEME REDESIGN
   ========================================= */

body.zorchem-theme {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.zorchem-nav {
    background-color: #1c1c1c !important;
    border-bottom: 2px solid #ffae00;
}
.zorchem-nav .logo img {
    filter: none; /* Just making sure */
}
.zorchem-nav .nav-links a:not(.btn) {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.zorchem-nav .nav-links a:not(.btn):hover {
    color: #ffae00;
}
.btn-zorchem-nav {
    background: #ffae00 !important;
    color: #1c1c1c !important;
    border-radius: 2px !important;
}

/* Hero Section */
.zorchem-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px);
}
.trust-badge {
    background-color: #1c1c1c;
    color: #ffae00;
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
}
.zorchem-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #1c1c1c !important;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.zorchem-hero-subtitle {
    font-size: 1.2rem;
    color: #1c1c1c !important;
    font-weight: 500;
    margin-bottom: 40px;
}
.zorchem-btn {
    background-color: #1c1c1c !important;
    color: #ffae00 !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    border: 2px solid #1c1c1c !important;
}
.zorchem-btn:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #ffae00 !important;
}
.zorchem-btn-outline {
    background-color: transparent !important;
    color: #1c1c1c !important;
    border: 2px solid #1c1c1c !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
}
.zorchem-btn-outline:hover {
    background-color: #1c1c1c !important;
    color: #fff !important;
}
.justify-center { justify-content: center; }

/* Stats Bar */
.zorchem-stats {
    background-color: #27272a;
    padding: 30px 0;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    color: #ffae00;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.stat-label {
    color: #a1a1aa;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Products */
.bg-light { background-color: #fafafa; }
.zorchem-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1c1c1c;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.zorchem-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffae00;
}
.yellow-title { color: #ffae00; }
.yellow-title::after { background-color: #ffae00; }

.zorchem-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.zorchem-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
}
.product-img-placeholder {
    height: 200px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-tag {
    display: inline-block;
    background-color: #ffae00;
    color: #1c1c1c;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    margin-bottom: 15px;
    align-self: flex-start;
}
.product-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 5px;
}
.product-subtitle {
    font-size: 0.8rem;
    color: #b45309;
    font-weight: 700;
    margin-bottom: 15px;
}
.product-desc {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
}
.product-price { font-size: 1.2rem; }
.zorchem-btn-sm {
    padding: 8px 15px !important;
    font-size: 0.85rem !important;
    border-radius: 0 !important;
}

/* Why Zorchem */
.bg-dark { background-color: #27272a; color: #fff; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.why-card {
    background-color: #1c1c1c;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #3f3f46;
}
.why-icon {
    font-size: 2.5rem;
    color: #ffae00;
    margin-bottom: 20px;
}
.why-title {
    color: #ffae00;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.why-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
}

/* CTA */
.zorchem-cta {
    background: linear-gradient(135deg, #ffb300 0%, #ff8c00 100%);
    padding: 80px 0;
}
.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1c1c1c;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem;
    color: #1c1c1c;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 500;
}

/* Footer */
.zorchem-footer {
    background-color: #18181b;
    padding-top: 60px;
}
.footer-logo-text {
    color: #ffae00;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}
.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links ul li a, .footer-contact ul li {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}
.footer-links ul li a:hover { color: #ffae00; }