/*
Theme Name: Eureka Luminar
Theme URI: https://eurekaluminar.in/
Author: Custom Build
Author URI: https://eurekaluminar.in/
Description: Custom WordPress theme for Eureka Luminar - A Lighting Manufacturer. Rebuilt from original site layout (Home, About, Company Profile, E Catalog, Product, Our Work, Contact Us).
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: eurekaluminar
*/
/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Segoe UI', Arial, sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 10px; font-family: Georgia, 'Times New Roman', serif; }

:root {
    --eu-pink: #e91367;
    --eu-navy: #17233c;
    --eu-navy-dark: #10182b;
    --eu-orange: #e08a1e;
    --eu-gray-bg: #f5f5f7;
    --eu-text-light: #6c7280;
}

.eu-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.eu-header { position: sticky; top: 0; z-index: 999; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.eu-header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 30px; }
.eu-logo-text { font-size: 22px; font-weight: 700; color: var(--eu-navy); display: block; line-height: 1.1; }
.eu-logo-text span { color: var(--eu-pink); }
.eu-logo-text small { display: block; font-size: 10px; letter-spacing: 1px; color: var(--eu-text-light); font-weight: 400; }
.eu-logo-text.light { color: #fff; }
.eu-logo-text.light span { color: var(--eu-pink); }

.eu-nav { flex: 1; }
.eu-menu { display: flex; gap: 26px; flex-wrap: wrap; }
.eu-menu a { font-weight: 500; font-size: 15px; color: #333; }
.eu-menu a:hover { color: var(--eu-pink); }

.eu-btn { display: inline-block; padding: 10px 22px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
.eu-btn-quote { background: var(--eu-navy); color: #fff; }
.eu-btn-quote:hover { background: var(--eu-pink); }
.eu-btn-outline { background: var(--eu-orange); color: #fff; }
.eu-btn-submit { background: var(--eu-navy); color: #fff; width: 100%; padding: 14px; font-size: 15px; }
.eu-btn-submit:hover { background: var(--eu-pink); }

.eu-mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; width: 30px; height: 24px; cursor: pointer; padding: 0; }
.eu-mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--eu-navy); border-radius: 2px; }

/* ===== Mobile full-screen menu ===== */
.eu-mobile-menu {
    position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 380px;
    background: var(--eu-navy-dark); color: #fff; z-index: 1001;
    transform: translateX(100%); transition: transform .35s ease;
    overflow-y: auto; display: flex; flex-direction: column;
}
.eu-mobile-menu.open { transform: translateX(0); }
.eu-mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.eu-mobile-menu-head .eu-logo-text { font-size: 18px; }
.eu-mobile-menu-head .eu-logo-text small { color: #9299ab; }
.eu-mobile-close { background: none; border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 0 4px; }
.eu-nav-mobile { flex: 1; padding: 6px 20px; }
.eu-menu-mobile { display: flex; flex-direction: column; gap: 0; }
.eu-menu-mobile li { border-bottom: 1px solid rgba(255,255,255,.1); }
.eu-menu-mobile li a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-size: 17px; font-weight: 600; color: #fff; }
.eu-menu-mobile li a::after { content: '\276F'; font-size: 13px; color: #9299ab; }
.eu-menu-mobile li a:hover, .eu-menu-mobile li a:focus { color: var(--eu-orange); }
.eu-btn-quote-mobile { margin: 16px 20px 24px; text-align: center; }
.eu-btn-quote-desktop { display: inline-block; }
.eu-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity .3s ease; }
.eu-mobile-overlay.open { opacity: 1; visibility: visible; }
body.eu-menu-open { overflow: hidden; }

/* ===== Hero ===== */
.eu-hero { position: relative; height: 460px; display: flex; align-items: flex-end; overflow: hidden; }
.eu-hero-bg { position: absolute; inset: 0; background: #1c2436 url('') center/cover no-repeat; }
.eu-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,20,35,.3), rgba(15,20,35,.75)); }
.eu-hero-content { position: relative; padding: 0 40px 60px; z-index: 2; }
.eu-hero-content h1 { color: #fff; font-size: 46px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== Sections ===== */
.eu-section { padding: 70px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.eu-section-ghost { font-size: 56px; color: #eef0f3; font-weight: 800; margin-bottom: -40px; }
.eu-section-title { font-size: 30px; color: var(--eu-navy); margin-bottom: 40px; }

/* ===== Grid / Cards ===== */
.eu-grid { display: grid; gap: 26px; margin-top: 20px; }
.eu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.eu-grid-4 { grid-template-columns: repeat(4, 1fr); }

.eu-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.06); text-align: left; }
.eu-card-img img, .eu-img-placeholder { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg,#dfe4ec,#c9d1de); }
.eu-img-placeholder.large { height: 340px; }
.eu-card-body { padding: 20px; }
.eu-card-body h4 { color: var(--eu-orange); font-size: 18px; }
.eu-card-body p { color: var(--eu-text-light); font-size: 14px; }

.eu-product-card { border-radius: 6px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.eu-product-card img, .eu-product-card .eu-img-placeholder { height: 160px; }

.eu-grid-cat { grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.eu-cat-link { display: block; padding: 12px; font-size: 13px; font-weight: 600; color: var(--eu-navy); background: var(--eu-gray-bg); border-radius: 4px; letter-spacing: .5px; }
.eu-cat-link:hover { background: #e6e9ef; }

.eu-stats-bar { display: flex; justify-content: space-around; margin-top: 60px; padding-top: 30px; border-top: 1px solid #eee; }
.eu-stat { text-align: center; }
.eu-stat-num { display: block; font-size: 34px; font-weight: 700; color: var(--eu-pink); }
.eu-stat-label { font-size: 14px; color: var(--eu-text-light); }

/* ===== About ===== */
.eu-about-flex { display: flex; align-items: stretch; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,.06); margin-top: 20px; }
.eu-about-img { flex: 1; }
.eu-about-img img, .eu-about-img .eu-img-placeholder { height: 100%; min-height: 340px; }
.eu-about-content { flex: 1; background: #fff; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.eu-about-content h3 { font-size: 26px; color: var(--eu-navy); }
.eu-about-content p { color: var(--eu-text-light); font-size: 15px; margin-bottom: 20px; }

/* ===== Contact ===== */
.eu-contact-flex { display: flex; gap: 0; text-align: left; margin-top: 20px; }
.eu-contact-info { flex: 1; background: var(--eu-navy-dark); color: #fff; padding: 45px; }
.eu-contact-label { color: var(--eu-orange); font-weight: 700; letter-spacing: 1px; font-size: 13px; }
.eu-contact-item { display: flex; gap: 16px; margin-top: 26px; font-size: 14px; }
.eu-contact-item i { background: rgba(255,255,255,.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }

.eu-contact-form { flex: 1.4; background: var(--eu-gray-bg); padding: 45px; }
.eu-contact-form form { display: flex; flex-direction: column; gap: 16px; }
.eu-form-row { display: flex; gap: 16px; }
.eu-contact-form input, .eu-contact-form textarea {
    width: 100%; padding: 13px 14px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; font-family: inherit; background: #fff;
}
.eu-form-msg { padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; font-size: 14px; }
.eu-form-msg.success { background: #d4f6dd; color: #1a7a34; }
.eu-form-msg.error { background: #fbdada; color: #a12222; }

/* ===== Footer ===== */
.eu-footer { background: var(--eu-navy-dark); color: #b7bccb; padding: 60px 20px 0; }
.eu-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr; gap: 30px; }
.eu-footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.eu-footer-col p { font-size: 14px; color: #9299ab; }
.eu-footer-menu li { margin-bottom: 10px; }
.eu-footer-menu a { font-size: 14px; color: #b7bccb; }
.eu-footer-menu a:hover { color: var(--eu-pink); }

.eu-footer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: start; }
.eu-gallery-placeholder { height: 60px; width: 100%; object-fit: cover; background: linear-gradient(135deg,#2a3550,#1c2438); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #6b7284; }

.eu-footer-address p { margin-bottom: 14px; }
.eu-footer-address strong { color: #fff; }

.eu-footer-bottom { max-width: 1200px; margin: 40px auto 0; padding: 24px 20px; border-top: 1px solid #232d47; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.eu-social-icons { display: flex; gap: 10px; }
.eu-social-icons a { width: 36px; height: 36px; background: #232d47; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.eu-social-icons a:hover { background: var(--eu-pink); }
.eu-footer-bottom p { margin: 0; font-size: 13px; }

.eu-whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; background: #25d366; width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px;
    box-shadow: 0 6px 16px rgba(0,0,0,.25); z-index: 999;
}

/* ===== Generic pages ===== */
.eu-generic-content { padding: 60px 20px; }
.eu-page-title { font-size: 32px; color: var(--eu-navy); margin-bottom: 20px; }
.eu-page-thumb { margin-bottom: 30px; }
.eu-entry-content { text-align: left; max-width: 900px; margin: 0 auto; color: #444; }

/* ===== Small inner-page hero (About / Contact / Product) ===== */
.eu-hero-sm { height: 260px; }
.eu-hero-sm .eu-hero-content { padding-bottom: 30px; }
.eu-hero-sm .eu-hero-content h1 { font-size: 34px; }

/* ===== Why Choose Us ===== */
.eu-why-us { margin-top: 20px; }

/* ===== Map (Contact page) ===== */
.eu-map-section { padding-top: 0; }
.eu-map-wrap { width: 100%; height: 400px; border-radius: 6px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.06); }

/* ===== Pagination (Product page) ===== */
.eu-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.eu-pagination .page-numbers { padding: 10px 16px; background: var(--eu-gray-bg); border-radius: 4px; font-size: 14px; font-weight: 600; color: var(--eu-navy); }
.eu-pagination .page-numbers.current { background: var(--eu-navy); color: #fff; }
.eu-pagination .page-numbers:hover:not(.current) { background: #e6e9ef; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .eu-grid-3, .eu-grid-4, .eu-grid-cat { grid-template-columns: repeat(2, 1fr); }
    .eu-footer-inner { grid-template-columns: 1fr 1fr; }
    .eu-about-flex, .eu-contact-flex { flex-direction: column; }
}
@media (max-width: 992px) {
    .eu-header-inner { flex-wrap: wrap; gap: 14px; }
    .eu-menu { gap: 16px; }
}
@media (max-width: 768px) {
@media (max-width: 768px) {
    .eu-nav-desktop, .eu-btn-quote-desktop { display: none; }
    .eu-mobile-toggle { display: flex; margin-left: auto; }
    .eu-hero { height: 320px; }
    .eu-hero-bg { background-position: center top; }
    .eu-hero-content { padding: 0 20px 30px; }
    .eu-hero-content h1 { font-size: 26px; }
    .eu-grid-3, .eu-grid-4, .eu-grid-cat { grid-template-columns: 1fr; }
    .eu-footer-inner { grid-template-columns: 1fr; }
    .eu-form-row { flex-direction: column; }
}
@media (max-width: 480px) {
    .eu-hero { height: 240px; }
    .eu-hero-content h1 { font-size: 22px; }
}
}
