/*
Theme Name: Ech El Bee
Theme URI: https://www.echelbee.in
Author: Ech El Bee Pixel 2 Paper
Author URI: https://www.echelbee.in
Description: Custom WordPress theme for Ech El Bee - Authorized Ricoh Printer & MFD Dealer in Jaipur
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: echelbee
*/

/* ── Google Fonts loaded via functions.php ── */

:root {
    --tech-blue: #0066FF;
    --deep-navy: #0A1929;
    --electric-cyan: #00D4FF;
    --warm-orange: #FF6B35;
    --pure-white: #FFFFFF;
    --soft-gray: #F5F7FA;
    --text-primary: #1A2332;
    --text-secondary: #64748B;
    --shadow-sm: 0 2px 8px rgba(0,102,255,0.08);
    --shadow-md: 0 8px 24px rgba(0,102,255,0.12);
    --shadow-lg: 0 16px 48px rgba(0,102,255,0.16);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pure-white);
}

/* ── NAV ── */
nav.site-nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.6rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(0,102,255,0.08);
    transition: box-shadow 0.3s;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 90px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; margin-left: 0.75rem; line-height: 1.1; }
.nav-logo-text .brand-main { font-family: 'Archivo Black', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--deep-navy); letter-spacing: 0.08em; }
.nav-logo-text .brand-sub { font-size: 0.9rem; font-weight: 600; color: var(--tech-blue); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--tech-blue); }
.nav-cta {
    background: linear-gradient(135deg, var(--tech-blue) 0%, #0052CC 100%) !important;
    color: white !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,102,255,0.3);
    transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,255,0.4); color: white !important; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 50%, #FAFBFF 100%);
    padding: 6rem 2rem 4rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 80%; height: 150%;
    background: radial-gradient(ellipse, rgba(0,102,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,102,255,0.08); color: var(--tech-blue);
    padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem;
    border: 1px solid rgba(0,102,255,0.15);
}
.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400; color: var(--deep-navy);
    line-height: 1.1; margin-bottom: 1.5rem; max-width: 800px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--electric-cyan) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--tech-blue) 0%, #0052CC 100%);
    color: white; padding: 0.9rem 2.2rem; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,102,255,0.35);
    display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,102,255,0.45); color: white; }
.btn-secondary {
    background: transparent; color: var(--tech-blue);
    padding: 0.9rem 2.2rem; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    border: 2px solid var(--tech-blue); transition: all 0.3s;
    display: inline-block;
}
.btn-secondary:hover { background: var(--tech-blue); color: white; }
.hero-features {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1.5rem; margin-top: 4rem; padding-top: 3rem;
    border-top: 1px solid rgba(0,102,255,0.1);
}
.hero-feature { display: flex; align-items: center; gap: 0.8rem; }
.hero-feature-icon { font-size: 1.8rem; }
.hero-feature-text strong { display: block; font-weight: 700; color: var(--deep-navy); font-size: 0.95rem; }
.hero-feature-text span { font-size: 0.85rem; color: var(--text-secondary); }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,102,255,0.1) 0%, rgba(0,212,255,0.1) 100%);
    color: var(--tech-blue); padding: 0.5rem 1.2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem;
}
.section-header h2 { font-family: 'Archivo Black', sans-serif; font-size: 3rem; font-weight: 400; color: var(--deep-navy); margin-bottom: 1rem; }
.section-header p { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.7; }

/* ── SERVICES ── */
.services { background: var(--soft-gray); }
.services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
    background: white; padding: 2.5rem; border-radius: 16px;
    box-shadow: var(--shadow-sm); transition: all 0.3s;
    border: 1px solid rgba(0,102,255,0.06);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.service-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.3rem; font-weight: 400; color: var(--deep-navy); margin-bottom: 1rem; }
.service-card p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.service-card ul { list-style: none; margin-bottom: 2rem; }
.service-card ul li { padding: 0.4rem 0; color: var(--text-secondary); font-size: 0.95rem; }
.service-card ul li::before { content: '✓ '; color: var(--tech-blue); font-weight: 700; }
.service-link { color: var(--tech-blue); text-decoration: none; font-weight: 600; font-size: 0.95rem; }

/* ── WHY US ── */
.why-us { background: var(--deep-navy); color: white; }
.why-us .section-tag { background: rgba(255,255,255,0.1); color: var(--electric-cyan); }
.why-us .section-header h2 { color: white; }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.why-card {
    background: rgba(255,255,255,0.05); padding: 2rem; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
}
.why-card:hover { background: rgba(0,102,255,0.15); border-color: rgba(0,102,255,0.4); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 0.7rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.6; }

/* ── PRODUCTS ── */
.products { background: var(--soft-gray); }
.product-tabs { max-width: 1200px; margin: 0 auto; }
.tab-buttons {
    display: inline-flex; gap: 0.5rem; margin-bottom: 2rem;
    background: white; padding: 0.5rem; border-radius: 12px; box-shadow: var(--shadow-sm);
}
.tab-button {
    padding: 0.7rem 2rem; border: none; background: transparent; border-radius: 8px;
    cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); transition: all 0.3s;
}
.tab-button.active { background: var(--tech-blue); color: white; box-shadow: 0 4px 15px rgba(0,102,255,0.3); }
.tab-content-wrapper { display: none; }
.tab-content-wrapper.active { display: block; }
.product-table { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); overflow-x: auto; }
.product-table table { width: 100%; border-collapse: collapse; }
.product-table th { background: linear-gradient(135deg, var(--tech-blue) 0%, #0052CC 100%); color: white; padding: 1rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.product-table td { padding: 0.85rem 1.2rem; border-bottom: 1px solid rgba(0,102,255,0.06); font-size: 0.9rem; color: var(--text-primary); vertical-align: middle; }
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:hover td { background: rgba(0,102,255,0.02); }
.category-header { background: rgba(0,102,255,0.06) !important; font-weight: 700; color: var(--tech-blue) !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.75rem 1.2rem !important; }
.brochure-btn { display: inline-block; background: linear-gradient(135deg, var(--tech-blue) 0%, #0052CC 100%); color: white; padding: 0.4rem 1rem; border-radius: 6px; text-decoration: none; font-size: 0.8rem; font-weight: 600; white-space: nowrap; transition: all 0.3s; }
.brochure-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,102,255,0.3); color: white; }
.new-badge { display: inline-block; background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: white; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; margin-right: 0.4rem; vertical-align: middle; }
.product-img { width: 90px; height: 75px; object-fit: contain; display: block; margin: 0 auto; transition: transform 0.2s, opacity 0.2s; }
.product-img:hover { transform: scale(1.12); opacity: 0.85; }
.product-note { text-align: center; margin-top: 1.5rem; color: var(--text-secondary); font-size: 0.9rem; font-style: italic; }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testimonials-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card { background: var(--soft-gray); padding: 2rem; border-radius: 16px; border: 1px solid rgba(0,102,255,0.08); }
.testimonial-stars { color: #F59E0B; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-card .client-name { font-weight: 700; color: var(--deep-navy); font-size: 0.9rem; }
.testimonial-card .client-info { color: var(--text-secondary); font-size: 0.85rem; }

/* ── BLOG SECTION ── */
.blog-section { background: var(--soft-gray); }
.blog-grid { max-width: 1200px; margin: 0 auto; }
.blog-category-title { font-family: 'Archivo Black', sans-serif; font-size: 1.3rem; font-weight: 400; color: var(--deep-navy); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.blog-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.blog-card { background: white; border-radius: 14px; padding: 1.5rem; border: 1px solid rgba(0,102,255,0.08); transition: all 0.3s; text-decoration: none; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-tag { display: inline-block; background: rgba(0,102,255,0.08); color: var(--tech-blue); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.8rem; }
.blog-card-tag.it { background: rgba(16,185,129,0.1); color: #059669; }
.blog-card h4 { font-weight: 700; color: var(--deep-navy); font-size: 1rem; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-card .read-more { color: var(--tech-blue); font-size: 0.85rem; font-weight: 600; }

/* ── SERVICE CALL FORM ── */
.service-call { background: white; }
.form-container { max-width: 700px; margin: 0 auto; background: var(--soft-gray); padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-primary); font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1.1rem; border: 1.5px solid rgba(0,102,255,0.15); border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; transition: all 0.3s; background: white; color: var(--text-primary); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--tech-blue); box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; background: linear-gradient(135deg, var(--tech-blue) 0%, #0052CC 100%); color: white; padding: 1rem; border: none; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,102,255,0.3); }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,102,255,0.4); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-message { display: none; padding: 1rem; border-radius: 8px; margin-top: 1rem; font-weight: 600; text-align: center; }
.form-message.success { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.3); }
.form-message.error { background: rgba(239,68,68,0.1); color: #DC2626; border: 1px solid rgba(239,68,68,0.3); }

/* ── CONTACT ── */
.contact { background: var(--soft-gray); }
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.8rem; font-weight: 400; color: var(--deep-navy); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 700; color: var(--deep-navy); margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; }
.contact-form { background: white; padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-sm); }
.map-embed { margin-top: 1.5rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,102,255,0.1); }

/* ── FOOTER ── */
footer.site-footer { background: var(--deep-navy); color: rgba(255,255,255,0.7); padding: 3rem 2rem 1.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { margin-top: 1rem; line-height: 1.7; font-size: 0.9rem; }
.footer-logo { font-family: 'Archivo Black', sans-serif; font-size: 1.2rem; color: white; }
footer h4 { color: white; font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
footer ul li a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }

/* ── BLOG SINGLE POST ── */
.blog-post-wrapper { max-width: 820px; margin: 0 auto; padding: 7rem 2rem 5rem; }
.blog-post-category { display: inline-block; background: rgba(0,102,255,0.08); color: var(--tech-blue); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; }
.blog-post-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 400; color: var(--deep-navy); line-height: 1.2; margin-bottom: 1rem; }
.blog-post-meta { display: flex; gap: 1.5rem; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,102,255,0.08); flex-wrap: wrap; }
.blog-post-content h2 { font-family: 'Archivo Black', sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--deep-navy); margin: 2.5rem 0 1rem; }
.blog-post-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--deep-navy); margin: 1.5rem 0 0.6rem; }
.blog-post-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.2rem; }
.blog-post-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-post-content ul li { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 0.4rem; }
.blog-cta-box { background: var(--deep-navy); border-radius: 16px; padding: 2.5rem; text-align: center; margin: 3rem 0; }
.blog-cta-box h3 { font-family: 'Archivo Black', sans-serif; color: white; font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; }
.blog-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.blog-cta-box a { display: inline-block; background: linear-gradient(135deg, var(--tech-blue), #0052CC); color: white; padding: 0.8rem 2rem; border-radius: 10px; text-decoration: none; font-weight: 700; margin: 0.4rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav.site-nav { padding: 0.8rem 1.2rem; }
    .nav-links { display: none; }
    .hero { padding: 5rem 1.2rem 3rem; }
    .hero-features { grid-template-columns: repeat(2,1fr); }
    .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .blog-cards { grid-template-columns: 1fr; }
    section { padding: 4rem 1.2rem; }
    .section-header h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-features { grid-template-columns: 1fr; }
    .form-container { padding: 1.5rem; }
}
