/* =============================================
   GOLDPLIN LASER - MAIN STYLESHEET
   ============================================= */

:root {
    --primary: #003580;
    --primary-dark: #002060;
    --primary-light: #1a4fa0;
    --accent: #0078d4;
    --accent2: #00b4d8;
    --white: #ffffff;
    --light: #f4f7fc;
    --light2: #e8eef8;
    --gray: #6b7280;
    --dark: #111827;
    --dark2: #1f2937;
    --text: #374151;
    --border: #e5e7eb;
    --success: #10b981;
    --whatsapp: #25d366;
    --shadow: 0 4px 20px rgba(0,53,128,0.12);
    --shadow-lg: 0 8px 40px rgba(0,53,128,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


/* ── TOPBAR ── */
.topbar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
}
.topbar-contact a:hover { color: #fff; }
.topbar-contact svg { width: 14px; height: 14px; fill: var(--accent2); }

/* ── HEADER ── */
.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}
.logo img { height: 48px; width: auto; }


.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; }
.btn-whatsapp:hover { background: #1dbd57; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,53,128,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── HERO SLIDER ── */
.hero {
    position: relative;
    overflow: hidden;
    background: #000;
    line-height: 0;
        padding: 0px;
}
.hero-slides { display: flex; transition: transform 0.6s ease; }
.hero-slide-img {
    min-width: 100%;
    position: relative;
    line-height: 0;
}
.hero-slide-img img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    display: block;
}
.hero-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: #fff; width: 24px; border-radius: 5px; }
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.3); }
.hero-prev svg, .hero-next svg { width: 24px; height: 24px; fill: #fff; }

/* ── SECTION STYLES ── */
section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block;
    background: var(--light2);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-title span { color: var(--primary); }
.section-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
}
.section-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent2));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ── ABOUT SECTION ── */
.about-section { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.25;
}
.about-content .lead {
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}
.about-content p { color: var(--text); margin-bottom: 14px; }
.about-image { position: relative; }
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-badge .num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge .label { font-size: 12px; opacity: 0.85; }

/* ── PRODUCTS GRID ── */
.products-section { background: var(--light); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent2);
}
.product-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--light);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card-body p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.btn-detail svg { width: 18px; height: 18px; fill: var(--primary); transition: transform 0.3s; }
.product-card:hover .btn-detail svg { transform: translateX(4px); }

/* ── STATS ── */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.8); }

/* ── FEATURES ── */
.features-section { background: #fff; }
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--light2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.feature-text p { font-size: 14px; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text); margin-bottom: 16px; font-style: italic; }
.testimonial-author strong { display: block; font-weight: 600; color: var(--dark); }
.testimonial-author span { font-size: 13px; color: var(--gray); }

/* ── BLOG SECTION ── */
.blog-section { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-cat {
    background: var(--light2);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.blog-card-body p { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.blog-read-more { font-size: 14px; font-weight: 600; color: var(--primary); }
.blog-read-more:hover { text-decoration: underline; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 0px 0; margin-bottom:0px;}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
        padding-left: 0rem;
        margin-bottom: 0rem;
}
.breadcrumb li { display: flex; align-items: center; font-size: 14px; color: var(--gray); }
.breadcrumb li::after { content: '>'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .active { color: var(--dark); font-weight: 500; }

/* ── PAGE BANNER ── */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/banner-pattern.svg') repeat;
    opacity: 0.07;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}
.page-banner .breadcrumb li,
.page-banner .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-banner .breadcrumb .active { color: #fff; }
.page-banner .breadcrumb li::after { color: rgba(255,255,255,0.5); }

/* ── CATEGORY PAGE ── */
.category-desc { background: #fff; padding: 40px 0 0; }
.category-desc p { font-size: 14px; color: var(--text); }

.category-desc h3{
    font-size:17px;
        color: var(--primary);
}

/* ── PRODUCT DETAIL ── */
.product-detail { padding: 60px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}
.product-images .main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-images .main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.product-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 16px;
    font-size: 16px;
}
.product-whatsapp svg { width: 22px; height: 22px; fill: #fff; }
.product-info h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.specs-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.specs-table tr:nth-child(even) td { background: var(--light); }
.specs-table tr:hover td { background: var(--light2); }
.specs-table h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 24px 0 10px;
    color: var(--dark);
}

/* Use Cases */
.use-cases { margin-top: 20px; }
.use-cases h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.use-cases ul { display: flex; flex-direction: column; gap: 8px; }
.use-cases li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}
.use-cases li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent2);
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section { background: var(--light);display: none; }
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); background: var(--light); }
.faq-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 500px; }
.faq-answer > div { padding: 0 20px 18px; font-size: 15px; color: var(--text); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 25px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--dark2); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}
.footer-about img { margin-bottom: 16px; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; stroke: #fff; stroke-width: 0; }

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px;padding-left: 0rem; }
.footer-col li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-col li a:hover { color: var(--accent2); padding-left: 6px; }

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    transition: var(--transition);
}
.btn-brochure svg { width: 18px; height: 18px; fill: currentColor; }
.btn-brochure:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-contact-bar {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    flex: 1;
    min-width: 200px;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--accent2); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent2); }
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 16px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.footer-bottom p{
    margin-bottom:0px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: flex-start; }
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.contact-info p { color: var(--text); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: #fff; }
.contact-item-text h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 14px; color: var(--gray); }
.contact-item-text a:hover { color: var(--primary); }

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--dark2); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,53,128,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
    background: #ecfdf5;
    color: var(--success);
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 600;
    display: none;
}

/* ── BLOG DETAIL ── */
.blog-detail { padding: 60px 0; }
.blog-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.blog-content .blog-meta { margin-bottom: 24px; font-size: 14px; color: var(--gray); }
.blog-content .featured-img {
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-content .featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.blog-content p { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-post { display: flex; gap: 14px; margin-bottom: 14px; }
.sidebar-post img { width: 70px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.sidebar-post h4 { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.sidebar-post span { font-size: 12px; color: var(--gray); }

/* ── CITY PAGE ── */
.city-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.city-hero::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.city-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.city-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin-bottom: 32px; }

/* ── ADMIN ── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--dark2);
    color: #fff;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.admin-nav { padding: 16px 0; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 28px;
}
.admin-nav a svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.admin-nav .nav-section {
    padding: 12px 20px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
}
.admin-main {
    margin-left: 260px;
    flex: 1;
    min-height: 100vh;
    background: var(--light);
}
.admin-topbar {
    background: #fff;
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.admin-topbar h1 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.admin-content { padding: 28px; }

/* Admin Cards */
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat-card {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.admin-stat-card h3 { font-size: 13px; color: var(--gray); font-weight: 500; margin-bottom: 8px; }
.admin-stat-card .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--dark); }

/* Admin Table */
.admin-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 24px;
}
.admin-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-card-header h2 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
    background: var(--light);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--dark2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: var(--light); }
.badge { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }

/* Admin Form */
.admin-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-form-full { grid-column: 1/-1; }
.admin-form-card .form-group input,
.admin-form-card .form-group select,
.admin-form-card .form-group textarea {
    border: 1px solid var(--border);
}
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 5px; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-success { background: var(--success); color: #fff; }
.btn-edit { background: var(--accent); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
    .about-grid, .features-grid, .contact-grid, .product-detail-grid, .blog-detail-grid { grid-template-columns: 1fr; }
    .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact-bar { flex-direction: column; gap: 16px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-slide { min-height: 400px; }
    .hero-content { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
    .admin-sidebar { width: 240px; transform: translateX(-100%); transition: transform 0.3s; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .about-badge { display: none; }
    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-stats { grid-template-columns: 1fr; }
    .blog-detail-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BOOTSTRAP OVERRIDES & CUSTOM NAVBAR/OFFCANVAS
   ============================================= */

/* ── TOPBAR ── */
.topbar { background: var(--primary-dark); font-size: 13px; }
.topbar-link { color: rgba(255,255,255,0.82); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-link i { color: var(--accent2); font-size: 12px; }
.topbar-link:hover { color: #fff; }

/* ── MAIN NAVBAR ── */
.site-navbar {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,53,128,0.09);
    padding: 0px 0;
    z-index: 1030;
}
.site-navbar .navbar-brand img { height: 48px; width: auto; }

/* Desktop nav links */
.site-navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark2) !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--primary) !important;
    background: var(--light);
}
.site-navbar .nav-link.active { font-weight: 600; }

/* Bootstrap dropdown override — HOVER based */
.site-navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 240px;
    margin-top: 0 !important;
    top: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}
/* Show on hover */
.site-navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.site-navbar .dropdown-item {
    font-size: 14px;
    padding: 9px 14px;
    border-radius: 6px;
    color: var(--text);
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.site-navbar .dropdown-item:hover {
    background: var(--light2);
    color: var(--primary);
    padding-left: 20px;
}

/* WhatsApp button in nav */
.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--whatsapp);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp-nav:hover { background: #1dbd57; transform: translateY(-1px); color: #fff !important; }

/* Mobile WA icon */
.btn-wa-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-wa-mobile:hover { background: #1dbd57; color: #fff; }

/* Hamburger icon color */
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23003580' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── OFFCANVAS MOBILE MENU ── */
.site-offcanvas {
    width: 300px !important;
    background: var(--dark2);
    color: #fff;
}

.offcanvas-header {
    background: var(--primary-dark);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.offcanvas-brand img { height: 38px; }

.offcanvas-body { padding: 0; overflow-y: auto; }

/* Nav links */
.offcanvas-nav { margin: 0; padding: 8px 0; }

.offcanvas-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.offcanvas-link i:first-child { font-size: 16px; color: var(--accent2); width: 20px; flex-shrink: 0; }
.offcanvas-link span { display: flex; align-items: center; gap: 12px; }
.offcanvas-link:hover,
.offcanvas-link.active { background: rgba(255,255,255,0.08); color: #fff; }
.offcanvas-link.active { border-left: 3px solid var(--accent2); }

/* Accordion arrow */
.offcanvas-chevron {
    font-size: 13px;
    transition: transform 0.3s;
    margin-left: auto;
    flex-shrink: 0;
}
[aria-expanded="true"] .offcanvas-chevron { transform: rotate(180deg); }

/* Submenu */
.offcanvas-submenu { padding: 4px 0; background: rgba(0,0,0,0.2); }
.offcanvas-sublink {
    display: block;
    padding: 10px 20px 10px 52px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s, background 0.2s;
}
.offcanvas-sublink:hover { color: var(--accent2); background: rgba(255,255,255,0.05); }

/* Offcanvas Footer */
.offcanvas-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offcanvas-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-decoration: none;
}
.offcanvas-contact-link i { color: var(--accent2); }
.offcanvas-contact-link:hover { color: #fff; }
.offcanvas-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}
.offcanvas-wa-btn:hover { background: #1dbd57; color: #fff; }

/* Remove old custom nav styles (Bootstrap handles these now) */
.nav-toggle { display: none !important; }

/* ── SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,53,128,0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,53,128,0.45);
}
.scroll-top-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* ── NAV MAIN CATEGORY LABEL (no link, no hover color change) ── */
.nav-label {
    cursor: default !important;
    user-select: none;
}
.nav-label:hover {
    color: var(--dark2) !important;
    background: transparent !important;
}

/* Dropdown header label (non-clickable group title inside dropdown) */
.dropdown-header-label {
    display: block;
    padding: 6px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    pointer-events: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

/* Offcanvas accordion label (div instead of button/a) */
.offcanvas-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s, color 0.2s;
    user-select: none;
}
.offcanvas-accordion:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.offcanvas-accordion span {
    display: flex;
    align-items: center;
    gap: 12px;
}
.offcanvas-accordion span i { color: var(--accent2); font-size: 16px; width: 20px; }

/* ── PRODUCT SPECS HTML OUTPUT ── */
.product-specs-html { margin-bottom: 20px; }
.product-specs-html h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 10px;
}
.product-specs-html h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 24px 0 12px;
}
.product-specs-html table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 16px;
    overflow-x: auto; 
}
.product-specs-html table th {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.product-specs-html table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.product-specs-html table tr:nth-child(even) td { background: var(--light); }
.product-specs-html table tr:hover td { background: var(--light2); }
.product-specs-html ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.product-specs-html ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text);
    list-style: disc;
}
.product-specs-html p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.7;
}
