/* ============================================================
   Packova — Main Stylesheet (Mobile-First)
   Colors: Dark Blue #0d1b2a | Orange #f4511e | White #ffffff
   ============================================================ */

:root {
  --primary:    #0d1b2a;
  --primary-mid:#1b3a5c;
  --accent:     #f4511e;
  --accent-dark:#d4420e;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --light:      #eef0f4;
  --gray:       #6b7280;
  --gray-light: #d1d5db;
  --dark:       #111827;
  --success:    #10b981;
  --warning:    #f59e0b;
  --error:      #ef4444;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
  --font:       'Poppins', 'Inter', sans-serif;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--off-white); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.section-header .eyebrow { display: inline-block; color: var(--accent); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: .5rem; }
.section-header h2 { margin-bottom: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; border: none;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,81,30,.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--light);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.logo-icon { color: var(--accent); font-size: 1.6rem; }
.logo-light .logo-text, .logo-light .logo-icon { color: var(--white); }

.main-nav ul { display: none; }
.main-nav ul li a { padding: .4rem .75rem; font-weight: 500; font-size: .9rem; color: var(--gray); transition: var(--transition); border-radius: var(--radius); }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .75rem; }

.mobile-nav-toggle { background: none; border: none; padding: .4rem; display: flex; flex-direction: column; gap: 5px; }
.mobile-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }
.mobile-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 900px) {
  .main-nav ul { display: flex; gap: .25rem; align-items: center; }
  .mobile-nav-toggle { display: none; }
}

/* Mobile nav drawer */
.main-nav.open ul {
  display: flex; flex-direction: column;
  position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--light);
  box-shadow: var(--shadow);
}

/* ---- Hero ---- */
/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative; /* This pulls the content forward */
    z-index: 10;        /* This ensures it sits above any invisible overlays */
}

.hero-image-wrap {
    text-align: right;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-wrap {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-content .hero-btns, 
    .hero-content .hero-stats {
        justify-content: center;
    }
}
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1e4d7a 100%);
  color: var(--white); padding: 6rem 0 5rem; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero .eyebrow { display: inline-block; background: rgba(244,81,30,.2); color: #ff8c6b; padding: .3rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ---- Cards ---- */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 1.5rem; }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

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

/* ---- Category cards ---- */
.cat-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.cat-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.cat-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cat-card h4 { color: var(--primary); font-size: 1rem; }

/* ---- Process Steps ---- */
.steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; padding: 1.5rem; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step h4 { margin-bottom: .5rem; }

/* ---- Testimonials ---- */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.testimonial-card .stars { color: #f59e0b; font-size: 1.1rem; display: block; margin-bottom: .75rem; }
.testimonial-card .review { color: var(--dark); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-card .client { font-weight: 700; color: var(--primary); }
.testimonial-card .biz { font-size: .85rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--light); }
.faq-question { width: 100%; text-align: left; padding: 1.25rem 0; background: none; border: none; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question .icon { width: 20px; height: 20px; border: 2px solid var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .icon { background: var(--accent); border-color: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--gray); }
.faq-answer.open { display: block; }

/* ---- Products ---- */
.products-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .products-layout { grid-template-columns: 260px 1fr; } }
.sidebar { }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--light); }
.filter-list { display: flex; flex-direction: column; gap: .5rem; }
.filter-list label { display: flex; align-items: center; gap: .6rem; font-size: .9rem; cursor: pointer; }
.filter-list input[type="checkbox"] { accent-color: var(--accent); }
.search-box { position: relative; }
.search-box input { width: 100%; padding: .75rem 1rem .75rem 2.75rem; border: 2px solid var(--light); border-radius: var(--radius); font-family: inherit; font-size: .95rem; transition: var(--transition); }
.search-box input:focus { outline: none; border-color: var(--accent); }
.search-box .search-icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: var(--gray); }
#searchResults { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--light); border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 50; display: none; }
#searchResults a { display: block; padding: .75rem 1rem; font-size: .9rem; border-bottom: 1px solid var(--light); transition: var(--transition); }
#searchResults a:hover { background: var(--off-white); }

/* ---- Product card ---- */
.product-card .card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.product-card .meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-card .meta span { font-size: .78rem; background: var(--light); color: var(--primary); padding: .2rem .6rem; border-radius: 100px; }
.eco-badge { background: #d1fae5 !important; color: #065f46 !important; }
.product-card .card-footer { 
    padding: 0 1.5rem 1.5rem; 
    display: flex; 
    justify-content: space-between; /* Pushes one left, one right */
    align-items: center; 
    gap: .5rem;                     /* Small gap between them */
    flex-wrap: nowrap;              /* Forces them to stay on one row */
}

/* This ensures the buttons fit perfectly inside the card without overflowing */
.product-card .card-footer .btn {
    flex: 1;
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* ---- Blog ---- */
.blog-card .card-body .category-tag { font-size: .75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; display: block; }
.blog-card .card-body h3 { font-size: 1.1rem; margin-bottom: .75rem; line-height: 1.4; }
.blog-card .meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--gray); margin-top: .75rem; }
.blog-card .card-footer { 
    padding: 0 1.5rem 1.5rem; 
}

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem;
  border: 2px solid var(--light); border-radius: var(--radius);
  font-family: inherit; font-size: .95rem;
  transition: var(--transition); background: var(--white); color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,81,30,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { font-size: .8rem; color: var(--error); margin-top: .3rem; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--success); }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--error); }

/* ---- Pagination ---- */
.pagination { margin-top: 2.5rem; }
.pagination ul { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pagination ul li a,
.pagination ul li.active a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); background: var(--white); border: 2px solid var(--light); font-weight: 600; font-size: .9rem; transition: var(--transition); }
.pagination ul li a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.pagination ul li.active a { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--gray); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--gray-light); }

/* ---- Page header ---- */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%); color: var(--white); padding: 4rem 0 3rem; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--light); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- CTA section ---- */
.cta-section { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); text-align: center; padding: 5rem 0; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---- Footer ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,.75); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { font-size: .9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent); }
.footer-contact ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; margin-bottom: .9rem; }
.footer-contact ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact ul li a { transition: var(--transition); }
.footer-contact ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; text-align: center; font-size: .85rem; }
.footer-bottom a:hover { color: var(--accent); }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { background: var(--accent); }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ---- Badges ---- */
.badge { display: inline-block; padding: .2rem .75rem; border-radius: 100px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-new    { background: #dbeafe; color: #1d4ed8; }
.badge-review { background: #fef3c7; color: #92400e; }
.badge-quoted { background: #d1fae5; color: #065f46; }
.badge-closed { background: var(--light); color: var(--gray); }
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #fee2e2; color: #991b1b; }

/* ---- Service cards ---- */
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid transparent; }
.service-card:hover { border-top-color: var(--accent); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { margin-bottom: .75rem; font-size: 1.1rem; }

/* ---- Team / Info cards ---- */
.info-card { display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.info-card .icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(244,81,30,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.info-card h4 { margin-bottom: .25rem; }
.info-card p { font-size: .9rem; margin: 0; }

/* ---- Product detail ---- */
.product-gallery { display: grid; gap: .75rem; }
.product-gallery .main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--light); }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.product-gallery .thumb { width: 70px; height: 70px; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--light); cursor: pointer; transition: var(--transition); }
.product-gallery .thumb.active, .product-gallery .thumb:hover { border-color: var(--accent); }
.product-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-specs { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.product-specs tr { border-bottom: 1px solid var(--light); }
.product-specs td { padding: .75rem 1rem; font-size: .9rem; }
.product-specs td:first-child { font-weight: 700; color: var(--primary); width: 45%; background: var(--off-white); }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-info-card { background: var(--primary); color: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .icon svg { width: 20px; height: 20px; }
.contact-info-item strong { display: block; color: var(--white); margin-bottom: .2rem; }
.contact-info-item a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.contact-info-item a:hover { color: var(--accent); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 250px; border: none; }

/* ---- Industries ---- */
.industry-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; background: var(--primary-mid); }
.industry-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1.5rem; }
.industry-card .overlay h4 { color: var(--white); font-size: 1rem; }
.industry-card .num { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; }

/* ---- Lazy loading ---- */
img.lazy { opacity: 0; transition: opacity .4s ease; }
img.lazy.loaded { opacity: 1; }

/* ---- Spinner ---- */
.spinner { width: 36px; height: 36px; border: 3px solid var(--light); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; margin: 2rem auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ---- Gallery lightbox ---- */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 999; align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
#lightbox .lb-close { position: absolute; top: 1rem; right: 1.5rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
