/*
 * Custom CSS for Lamat Industrial Automation Blocks
 * Designed for Astra Theme
 * Version: 1.0.0
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --primary-red: #6e0f1a;
    --hover-gold: #d4af37;
    --text-black: #000000;
    --text-gray: #374151;
    --text-gray-light: #6b7280;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --border-color: #e5e7eb;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 10px 30px rgba(110, 15, 26, 0.1);
    --transition: all 0.3s ease;
}

/* ==========================================
   CONTAINER
   ========================================== */
.lamat-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   GRID SYSTEM
   ========================================== */
.lamat-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.lamat-grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .lamat-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lamat-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .lamat-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lamat-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   STRICT CARD DESIGN
   ========================================== */
.lamat-strict-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lamat-strict-card:hover {
    border-color: var(--hover-gold);
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
}

/* ==========================================
   ICON BOX
   ========================================== */
.lamat-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lamat-strict-card:hover .lamat-icon-box {
    background: #fffbeb;
    border-color: var(--hover-gold);
}

.lamat-strict-card:hover .lamat-icon-box svg {
    color: var(--hover-gold) !important;
}

/* ==========================================
   BUTTONS
   ========================================== */
.lamat-btn-primary {
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.lamat-btn-primary:hover {
    background-color: var(--hover-gold);
    color: #ffffff;
    border-color: var(--hover-gold);
}

.lamat-btn-secondary {
    background-color: #ffffff;
    color: var(--primary-red);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.lamat-btn-secondary:hover {
    background-color: var(--hover-gold);
    color: #ffffff;
}

/* ==========================================
   SECTION TITLE
   ========================================== */
.lamat-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 3rem;
    text-align: center;
}

.lamat-section-title h2 {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--primary-red);
}

.lamat-section-title .lamat-divider {
    width: 5rem;
    height: 0.25rem;
    background: var(--primary-red);
    margin: 1.25rem 0;
    border-radius: 9999px;
    flex-shrink: 0;
}

.lamat-section-title p {
    font-size: 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 48rem;
    text-align: center;
    font-weight: 500;
    margin: 0;
    padding: 0 1rem;
    color: var(--text-black);
}

/* ==========================================
   INFINITE MARQUEE
   ========================================== */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.lamat-animate-marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.lamat-marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.lamat-marquee-item {
    height: 3rem;
    height: clamp(3rem, 4vw, 4rem);
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    margin-right: 6rem;
}

.lamat-marquee-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   SEARCH COMPONENT
   ========================================== */
.lamat-search-container {
    max-width: 48rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 50;
}

.lamat-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.lamat-search-box:hover,
.lamat-search-box:focus-within {
    border-color: var(--hover-gold);
}

.lamat-search-icon {
    padding-left: 1.5rem;
    padding-right: 0.5rem;
    color: var(--primary-red);
}

.lamat-search-input {
    width: 100%;
    padding: 1rem 0.5rem;
    border: none;
    outline: none;
    color: var(--text-gray);
    font-weight: 500;
    background: transparent;
    font-size: 1rem;
}

.lamat-search-button {
    background: var(--primary-red);
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lamat-search-button:hover {
    background: var(--hover-gold);
}

.lamat-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 18.75rem;
    overflow-y: auto;
    margin-top: 0.75rem;
}

.lamat-search-dropdown-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border-bottom: 1px solid #f3f4f6;
}

.lamat-search-dropdown-item:hover {
    background: #f9fafb;
}

.lamat-search-dropdown-item .lamat-title {
    font-weight: 700;
    color: var(--text-gray);
}

.lamat-search-dropdown-item:hover .lamat-title {
    color: var(--primary-red);
}

.lamat-search-dropdown-item .lamat-badge {
    font-size: 0.625rem;
    font-size: clamp(0.625rem, 1vw, 0.75rem);
    font-weight: 700;
    background: rgba(110, 15, 26, 0.1);
    color: var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lamat-search-no-results {
    padding: 2rem;
    text-align: center;
}

.lamat-search-no-results p {
    color: var(--text-gray-light);
    font-weight: 500;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.lamat-hero-section {
    position: relative;
    padding: 3rem 0 4rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.lamat-hero-title {
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 2rem;
    color: var(--primary-red);
}

.lamat-hero-title span {
    color: var(--hover-gold);
}

.lamat-hero-banner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    height: 25rem;
    height: clamp(25rem, 40vw, 34.375rem);
}

.lamat-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.lamat-hero-banner:hover img {
    transform: scale(1.05);
}

.lamat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .lamat-hero-overlay {
        padding: 3rem;
    }
}

.lamat-hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lamat-hero-buttons {
        flex-direction: row;
    }
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.lamat-products-section {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.lamat-product-card {
    overflow: hidden;
}

.lamat-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.lamat-product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lamat-product-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: var(--primary-red);
}

.lamat-product-content p {
    color: var(--text-gray-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.lamat-product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: auto;
    transition: var(--transition);
}

.lamat-product-link:hover {
    color: var(--hover-gold);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.lamat-services-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.lamat-service-card {
    padding: 2rem;
    text-align: center;
}

.lamat-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--primary-red);
}

.lamat-service-card p {
    color: var(--text-gray-light);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.lamat-service-link {
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: auto;
    transition: var(--transition);
}

.lamat-service-link:hover {
    color: var(--hover-gold);
}

.lamat-hotline-banner {
    background: var(--primary-red);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(110, 15, 26, 0.3);
}

@media (min-width: 768px) {
    .lamat-hotline-banner {
        flex-direction: row;
    }
}

.lamat-hotline-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lamat-hotline-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lamat-hotline-text h3 {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.lamat-hotline-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin: 0;
}

.lamat-hotline-button {
    padding: 1rem 2rem;
    background: var(--hover-gold);
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.5rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lamat-hotline-button:hover {
    background: #ffffff;
    color: var(--primary-red);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.lamat-process-section {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.lamat-process-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.lamat-process-number {
    font-size: 3.75rem;
    font-weight: 900;
    color: #f3f4f6;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.lamat-process-card:hover .lamat-process-number {
    color: rgba(212, 175, 55, 0.1);
}

.lamat-process-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
    transition: var(--transition);
}

.lamat-process-card:hover .lamat-process-icon {
    background: #fffbeb;
    border-color: var(--hover-gold);
}

.lamat-process-icon svg {
    color: var(--primary-red);
    transition: var(--transition);
}

.lamat-process-card:hover .lamat-process-icon svg {
    color: var(--hover-gold);
}

.lamat-process-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 10;
    color: var(--primary-red);
}

.lamat-process-card p {
    color: var(--text-gray-light);
    position: relative;
    z-index: 10;
    margin: 0;
}

/* ==========================================
   MARQUEE SECTION
   ========================================== */
.lamat-marquee-section {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* ==========================================
   APPLICATIONS SECTION
   ========================================== */
.lamat-applications-section {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.lamat-application-card {
    overflow: hidden;
}

.lamat-application-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.lamat-application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.lamat-application-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lamat-application-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lamat-application-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: var(--primary-red);
}

.lamat-application-content p {
    color: var(--text-gray-light);
    font-size: 0.875rem;
    margin: 0;
}

.lamat-view-all-button {
    text-align: center;
    margin-top: 2.5rem;
}

.lamat-view-all-button a {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lamat-view-all-button a:hover {
    color: var(--hover-gold);
}

/* ==========================================
   SHOWCASE SECTION
   ========================================== */
.lamat-showcase-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.lamat-showcase-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lamat-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lamat-showcase-image {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lamat-showcase-image img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.lamat-showcase-play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.lamat-showcase-play-button-inner {
    width: 5rem;
    height: 5rem;
    background: var(--primary-red);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(110, 15, 26, 0.4);
    pointer-events: auto;
    cursor: pointer;
    transition: var(--transition);
    border: 4px solid #ffffff;
}

.lamat-showcase-play-button-inner:hover {
    background: var(--hover-gold);
}

.lamat-showcase-play-button-inner svg {
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    margin-left: 0.25rem;
}

.lamat-showcase-features {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .lamat-showcase-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lamat-showcase-feature {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lamat-showcase-feature svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.lamat-showcase-feature span {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

/* ==========================================
   METRICS SECTION
   ========================================== */
.lamat-metrics-section {
    padding: 4rem 0;
    background: var(--primary-red);
}

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

@media (min-width: 768px) {
    .lamat-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lamat-metric-item {
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .lamat-metric-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    .lamat-metric-item:last-child {
        border-right: none;
    }
}

.lamat-metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--hover-gold);
    margin-bottom: 0.5rem;
}

.lamat-metric-label {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ==========================================
   REPAIR TIMELINE SECTION
   ========================================== */
.lamat-repair-section {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.lamat-repair-card {
    padding: 2rem;
    background: #ffffff;
    text-align: center;
}

.lamat-repair-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.lamat-repair-step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-red);
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.lamat-repair-card:hover .lamat-repair-step-number {
    background: var(--hover-gold);
}

.lamat-repair-card h3 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-red);
}

.lamat-repair-card p {
    color: var(--text-gray-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================
   COMMITMENTS SECTION
   ========================================== */
.lamat-commitments-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.lamat-commitment-card {
    padding: 2rem;
    text-align: center;
}

.lamat-commitment-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--primary-red);
}

.lamat-commitment-card p {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.lamat-cta-section {
    padding: 4rem 0;
    background: var(--bg-gray);
}

.lamat-cta-banner {
    background: var(--primary-red);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(110, 15, 26, 0.3);
    max-width: 64rem;
    margin: 0 auto;
}

.lamat-cta-banner p {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    max-width: 32rem;
    margin: 0;
}

.lamat-cta-button {
    background: #ffffff;
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lamat-cta-button:hover {
    background: var(--hover-gold);
    color: #ffffff;
    border-color: #ffffff;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.lamat-text-center { text-align: center; }
.lamat-text-left { text-align: left; }
.lamat-text-right { text-align: right; }
.lamat-uppercase { text-transform: uppercase; }
.lamat-font-bold { font-weight: 700; }
.lamat-font-medium { font-weight: 500; }
.lamat-hidden { display: none; }
.lamat-hidden-desktop { display: none; }
@media (min-width: 768px) {
    .lamat-hidden-desktop { display: block; }
}
.lamat-block { display: block; }
.lamat-inline-block { display: inline-block; }
.lamat-flex { display: flex; }
.lamat-inline-flex { display: inline-flex; }
.lamat-items-center { align-items: center; }
.lamat-justify-center { justify-content: center; }
.lamat-gap-2 { gap: 0.5rem; }
.lamat-gap-4 { gap: 1rem; }
.lamat-mb-4 { margin-bottom: 1rem; }
.lamat-mb-8 { margin-bottom: 2rem; }
.lamat-mb-10 { margin-bottom: 2.5rem; }
.lamat-mt-4 { margin-top: 1rem; }
.lamat-py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.lamat-px-4 { padding-left: 1rem; padding-right: 1rem; }
.lamat-py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.lamat-px-8 { padding-left: 2rem; padding-right: 2rem; }
.lamat-rounded-lg { border-radius: 0.5rem; }
.lamat-rounded-xl { border-radius: 0.75rem; }
.lamat-rounded-2xl { border-radius: 1rem; }
.lamat-shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.lamat-shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15); }

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 767px) {
    .lamat-container {
        padding: 0 1rem;
    }
    
    .lamat-section-title {
        margin-bottom: 2rem;
    }
    
    .lamat-hero-section {
        padding: 2rem 0 3rem;
    }
    
    .lamat-products-section,
    .lamat-services-section,
    .lamat-process-section,
    .lamat-applications-section,
    .lamat-showcase-section,
    .lamat-repair-section,
    .lamat-commitments-section,
    .lamat-cta-section {
        padding: 3rem 0;
    }
    
    .lamat-metrics-section {
        padding: 3rem 0;
    }
    
    .lamat-marquee-section {
        padding: 2rem 0;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .hero-banner,
    .hotline-banner,
    .cta-banner {
        box-shadow: none;
    }
    
    .strict-card {
        break-inside: avoid;
    }
}
