/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #D31D1F;
    --red-dark:  #b01618;
    --red-light: rgba(211,29,31,0.08);
    --green:     #00B464;
    --green-dark:#009652;
    --green-light:rgba(0,180,100,0.08);
    --dark:      #111827;
    --dark2:     #1f2937;
    --light:     #f9fafb;
    --light2:    #f1f5f9;
    --white:     #ffffff;
    --text:      #1f2937;
    --text-muted:#6b7280;
    --border:    #e5e7eb;
    --shadow:    0 4px 24px rgba(0,0,0,0.07);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --radius:    10px;
    --transition:0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

.font-latin { font-family: 'Poppins', sans-serif; }
.font-arabic { font-family: 'Cairo', sans-serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }

.logo-img { height: 44px; width: auto; display: block; }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.4px;
}
.logo-hardware { color: var(--green); }
.logo-amp { color: var(--red); }

.logo-tagline {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--red); background: var(--red-light); }
.nav-links a.active { color: var(--red); font-weight: 600; }

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 14px; right: 14px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: 7px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--green-dark) !important;
    color: var(--white) !important;
}
.nav-cta.active::after { display: none; }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 4px 8px;
}
.lang-flag {
    display: flex;
    align-items: center;
    opacity: 0.45;
    transition: var(--transition);
    border-radius: 3px;
    padding: 2px;
}
.lang-flag img { display: block; border-radius: 2px; }
.lang-flag:hover { opacity: 1; }
.lang-flag.lang-active { opacity: 1; outline: 2px solid var(--red); outline-offset: 1px; border-radius: 3px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.38);
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(17,24,39,0.85) 0%,
        rgba(17,24,39,0.55) 55%,
        rgba(0,180,100,0.12) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,100,0.15);
    border: 1px solid rgba(0,180,100,0.4);
    color: var(--green);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--green); }

.hero p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 2;
    display: flex;
    gap: 1px;
}

.hero-stat {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 28px;
    text-align: center;
}

.hero-stat:first-child { border-radius: 10px 0 0 10px; }
.hero-stat:last-child  { border-radius: 0 10px 10px 0; }

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num span { color: var(--green); }

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211,29,31,0.35);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,180,100,0.35);
}

/* keep btn-gold as alias for red for backwards compat */
.btn-gold { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-gold:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,29,31,0.3); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline-dark:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

/* ===== SECTION BASE ===== */
section { padding: 88px 0; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.8;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .section-tag { justify-content: center; }

/* ===== RED DIVIDER ===== */
.red-divider {
    width: 44px; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 4px;
    margin: 14px 0 22px;
}
.center .red-divider { margin: 14px auto 22px; }

/* keep gold-divider as alias */
.gold-divider {
    width: 44px; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 4px;
    margin: 14px 0 22px;
}
.center .gold-divider { margin: 14px auto 22px; }

/* ===== BRAND STRIP ===== */
.brand-strip {
    background: linear-gradient(90deg, var(--red) 0%, #8b1011 50%, var(--green) 100%);
    padding: 14px 0;
    overflow: hidden;
}
.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.brand-strip span {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.fi-red   { background: var(--red-light); }
.fi-green { background: var(--green-light); }
.fi-gold  { background: rgba(212,175,55,0.18); }
.fi-gold i { color: #d4af37; }

.features-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card-dark {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
}

.feature-card-dark h3 { color: #fff !important; }
.feature-card-dark p  { color: rgba(255,255,255,0.72); }
.feature-card-dark::after { background: linear-gradient(90deg, #d4af37, var(--green)); }

.feature-card-dark .fi-red   { background: #d31d1f; }
.feature-card-dark .fi-red i { color: #fff; }
.feature-card-dark .fi-green   { background: #00B464; }
.feature-card-dark .fi-green i { color: #fff; }
.feature-card-dark .fi-gold    { background: #d4af37; }
.feature-card-dark .fi-gold i  { color: #fff; }

.feature-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===== PRODUCTS GRID ===== */
.products-grid,
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* ===== CATALOGUE SECTION ===== */
.catalogue-section {
    padding: 96px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.catalogue-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.catalogue-section .section-tag { color: var(--green); }
.catalogue-section .section-title { color: #fff; }
.catalogue-section .gold-divider { background: var(--green); }

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.catalogue-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.4s;
}

.catalogue-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 32px 80px rgba(0,0,0,0.65);
}

.catalogue-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.catalogue-card:hover .catalogue-card-img {
    transform: scale(1.08);
}

.catalogue-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,15,25,0.95) 0%,
        rgba(10,15,25,0.55) 50%,
        rgba(10,15,25,0.15) 100%
    );
    transition: background 0.4s;
}

.catalogue-card:hover .catalogue-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10,15,25,0.98) 0%,
        rgba(10,15,25,0.65) 55%,
        rgba(10,15,25,0.25) 100%
    );
}

.catalogue-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
}

.catalogue-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catalogue-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

.catalogue-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.catalogue-card-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.catalogue-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.catalogue-card-btn:hover {
    background: #16a34a;
    transform: translateX(3px);
}

.catalogue-card-btn svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    transition: transform 0.2s;
}

.catalogue-card-btn:hover svg { transform: translateX(3px); }

@media (max-width: 640px) {
    .catalogue-grid { grid-template-columns: 1fr; }
    .catalogue-card { height: 340px; }
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    border-color: var(--green);
}

/* Square image wrapper using aspect-ratio */
.product-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: var(--light2);
    position: relative;
}

.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-img img { transform: scale(1.07); }

/* Green accent line at bottom of image */
.product-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--red));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-img::after { opacity: 1; }

.product-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: rgba(0,180,100,0.25);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-sku {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-finish {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-finish::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--dark);
    padding: 130px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211,29,31,0.15) 0%, transparent 50%, rgba(0,180,100,0.1) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.breadcrumb a { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb > span:last-child { color: rgba(255,255,255,0.55); }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    background: var(--light2);
    align-self: start;
}

.about-img-inner {
    width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=800&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(0,180,100,0.35);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.97rem;
    line-height: 1.85;
}

.about-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 22px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.value-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.value-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 9px;
}

.value-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vd-red   { background: var(--red); }
.vd-green { background: var(--green); }

.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; padding-left: 17px; }

/* ===== BG ALT ===== */
.bg-light  { background: var(--light); }
.bg-light2 { background: var(--light2); }
.bg-dark {
    background: var(--dark);
    color: var(--white);
}
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-tag   { color: var(--green); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 52px;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--dark);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-red   { background: var(--red-light); }
.ci-green { background: var(--green-light); }

.contact-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--green); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.8px; }
.contact-item p  { font-size: 0.93rem; color: var(--text-muted); }

/* ===== FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,180,100,0.10);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
    background: rgba(0,180,100,0.08);
    border: 1.5px solid rgba(0,180,100,0.35);
    color: #006b3a;
    padding: 13px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
}

.footer-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    filter: brightness(1.1) drop-shadow(0 0 0 transparent);
    opacity: 1;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.4px;
}
.footer-logo-hw { color: var(--green); }
.footer-logo-tagline {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-tagline-text { margin-top: 14px; font-size: 0.88rem; max-width: 230px; line-height: 1.7; }

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--green); padding-left: 4px; }

.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}
.footer-lang a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-lang a:hover { color: var(--green); }
.footer-lang a.lang-active { color: var(--green); }
.footer-lang span { color: rgba(255,255,255,0.15); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RTL ===== */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero p { margin-right: 0; }
[dir="rtl"] .section-tag::before { display: none; }
[dir="rtl"] .value-card p { padding-left: 0; padding-right: 17px; }
[dir="rtl"] .footer-col a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .hero-stats { left: 0; right: auto; }
[dir="rtl"] .about-badge { left: 24px; right: auto; }

/* ===== NO PRODUCTS ===== */
.no-products {
    text-align: center;
    padding: 56px 20px;
    color: var(--text-muted);
    font-size: 1rem;
    grid-column: 1 / -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .about-img { width: 100%; max-width: 100%; height: auto; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-stats { display: none; }
}

@media (max-width: 640px) {
    section { padding: 64px 0; }
    .nav-links, .lang-switcher { display: none; flex-direction: column; }
    .nav-links.open { display: flex; }
    .lang-switcher.open { display: flex; flex-direction: row; border: none; padding: 0 0 12px; }
    .nav-inner { flex-wrap: wrap; height: auto; padding: 12px 20px; }
    .nav-toggle { display: flex; }
    .nav-links { width: 100%; gap: 2px; padding-bottom: 10px; }
    .logo-tagline { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-actions { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== VIEW MORE BUTTON (products grid) ===== */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    align-self: flex-start;
    padding: 10px 24px;
    background: var(--green);
    border: 2px solid var(--green);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-view-more:hover {
    background: transparent;
    color: var(--green);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section { padding: 60px 0 80px; }

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 36px;
    transition: var(--transition);
}
.btn-back:hover { color: var(--green); }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Gallery */
.gallery-main {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.no-img-placeholder { font-size: 4rem; }

.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.gallery-thumbs .thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.thumb-active {
    border-color: var(--green);
    opacity: 1;
}

/* Info */
.product-detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}
.product-detail-sku,
.product-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.detail-label {
    font-weight: 700;
    color: var(--gold, #c9a84c);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-detail-desc {
    margin: 22px 0 30px;
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.product-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.btn-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn-primary-action:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn-secondary-action:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* RTL adjustments */
[dir="rtl"] .btn-back { flex-direction: row-reverse; }
[dir="rtl"] .product-detail-sku,
[dir="rtl"] .product-detail-meta { flex-direction: row; justify-content: flex-start; }

/* Responsive */
@media (max-width: 860px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
    .product-detail-actions { flex-direction: column; }
    .btn-primary-action, .btn-secondary-action { justify-content: center; }
}

/* ===== LUCIDE ICONS ===== */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Size contexts */
.badge-icon         { width: 15px; height: 15px; margin-bottom: 2px; }
.feature-icon [data-lucide] { width: 28px; height: 28px; }
.contact-icon [data-lucide] { width: 22px; height: 22px; }
.footer-icon        { width: 13px; height: 13px; margin-bottom: 1px; opacity: 0.7; }
.product-img-placeholder [data-lucide] { width: 48px; height: 48px; opacity: 0.3; }
.no-img-placeholder [data-lucide]      { width: 64px; height: 64px; opacity: 0.25; }
.btn-primary-action [data-lucide],
.btn-secondary-action [data-lucide]    { width: 17px; height: 17px; }
.btn-view-more [data-lucide]           { width: 14px; height: 14px; }
.brand-strip-inner [data-lucide]       { width: 14px; height: 14px; }
