/* ============================================================
   SOLUTIONS PAGE  (.sol-)
   ============================================================ */

/* Intro */
.sol-intro-section { padding: 80px 0 40px; background: #fff; }
.sol-eyebrow { display: inline-block; font-family: var(--accent-font); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-color); background: rgba(239,127,27,0.1); padding: 6px 16px; border-radius: 30px; margin-bottom: 18px; }
.sol-intro-title { font-family: var(--accent-font); font-size: 38px; font-weight: 800; color: var(--primary-color); line-height: 1.2; margin-bottom: 18px; }
.sol-intro-desc { font-size: 17px; color: var(--text-color); line-height: 1.8; max-width: 680px; margin: 0 auto; }

/* Category pill nav */
.sol-cat-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sol-cat-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 50px; border: 2px solid var(--divider-color); color: var(--primary-color); font-family: var(--accent-font); font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s ease; background: #fff; }
.sol-cat-pill:hover, .sol-cat-pill.active { background: var(--accent-color); border-color: var(--accent-color); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,127,27,0.3); }

/* Category sections */
.sol-category-section { padding: 80px 0; background: #fff; }
.sol-category-section.sol-alt { background: var(--secondary-color); }

.sol-cat-header { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 48px; }
.sol-cat-icon-wrap { width: 64px; height: 64px; min-width: 64px; border-radius: 18px; background: rgba(239,127,27,0.1); color: var(--accent-color); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-top: 4px; }
.sol-cat-title { font-family: var(--accent-font); font-size: 32px; font-weight: 800; color: var(--primary-color); margin-bottom: 8px; }
.sol-cat-subtitle { font-size: 16px; color: var(--text-color); margin: 0; line-height: 1.7; }

/* Product cards */
.sol-product-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(18,34,59,0.08); border: 1px solid rgba(18,34,59,0.06); transition: all 0.35s ease; height: 100%; display: flex; flex-direction: column; position: relative; }
.sol-product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(18,34,59,0.14); border-color: var(--accent-color); }
.sol-pc-badge { position: absolute; top: 16px; left: 16px; background: var(--accent-color); color: #fff; font-size: 11px; font-weight: 700; font-family: var(--accent-font); letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 30px; z-index: 2; }
.sol-pc-image { background: var(--secondary-color); height: 200px; display: flex; align-items: center; justify-content: center; padding: 24px; }
.sol-pc-image img { max-height: 160px; max-width: 100%; object-fit: contain; transition: transform 0.35s ease; }
.sol-product-card:hover .sol-pc-image img { transform: scale(1.06); }
.sol-pc-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.sol-pc-body h4 { font-family: var(--accent-font); font-size: 18px; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }
.sol-pc-body p { font-size: 14px; color: var(--text-color); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.sol-pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.sol-pc-tags span { font-size: 11px; font-weight: 600; background: rgba(18,34,59,0.06); color: var(--primary-color); padding: 3px 10px; border-radius: 20px; }
.sol-pc-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--accent-font); font-size: 14px; font-weight: 700; color: var(--accent-color); text-decoration: none; margin-top: auto; transition: gap 0.2s; }
.sol-pc-link:hover { gap: 12px; color: var(--accent-color); }

/* Selector guide box */
.sol-selector-box { display: flex; align-items: center; gap: 20px; background: var(--primary-color); color: #fff; border-radius: 16px; padding: 24px 32px; margin-top: 40px; }
.sol-sb-icon { font-size: 28px; color: var(--accent-color); min-width: 36px; }
.sol-selector-box strong { font-family: var(--accent-font); font-size: 16px; display: block; margin-bottom: 6px; }
.sol-selector-box p { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }
.sol-sb-btn { margin-left: auto; white-space: nowrap; background: var(--accent-color); color: #fff; padding: 12px 24px; border-radius: 30px; font-family: var(--accent-font); font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.sol-sb-btn:hover { background: #fff; color: var(--accent-color); }

/* Feature panel */
.sol-feature-panel { background: var(--primary-color); border-radius: 20px; padding: 36px 40px; height: 100%; color: #fff; }
.sol-feature-panel h4 { font-family: var(--accent-font); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.sol-feature-panel h4 i { color: var(--accent-color); }
.sol-fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.sol-fp-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; }
.sol-fp-item i { color: var(--accent-color); font-size: 15px; margin-top: 2px; min-width: 16px; }
.sol-fp-apps { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; }
.sol-fp-apps strong { font-family: var(--accent-font); font-size: 13px; color: var(--accent-color); display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.sol-fp-apps p { font-size: 14px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.7; }

/* Compare table */
.sol-compare-table { background: #fff; border-radius: 16px; padding: 30px 36px; margin-top: 40px; box-shadow: 0 4px 20px rgba(18,34,59,0.07); }
.sol-compare-table h5 { font-family: var(--accent-font); font-size: 17px; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.sol-compare-table h5 i { color: var(--accent-color); }
.sol-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sol-table thead th { background: var(--primary-color); color: #fff; padding: 12px 16px; font-family: var(--accent-font); font-weight: 600; text-align: left; }
.sol-table thead th:first-child { border-radius: 8px 0 0 0; }
.sol-table thead th:last-child { border-radius: 0 8px 0 0; }
.sol-table tbody tr { border-bottom: 1px solid rgba(18,34,59,0.07); }
.sol-table tbody tr:hover { background: var(--secondary-color); }
.sol-table tbody td { padding: 12px 16px; color: var(--text-color); }
.sol-table tbody td:first-child { font-weight: 600; color: var(--primary-color); }

/* ============================================================
   PROJECTS PAGE  (.proj-)
   ============================================================ */

/* Stats row */
.proj-stats-section { background: var(--primary-color); padding: 50px 0; }
.proj-stats-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.proj-stat-item { text-align: center; padding: 0 48px; }
.proj-stat-icon { font-size: 28px; color: var(--accent-color); margin-bottom: 12px; }
.proj-stat-num { font-family: var(--accent-font); font-size: 48px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.proj-stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }
.proj-stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.15); }

/* Gallery section */
.proj-gallery-section { padding: 80px 0 60px; background: #fff; }

/* Filter buttons */
.proj-filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 40px 0 48px; }
.proj-filter-btn { border: 2px solid var(--divider-color); background: transparent; color: var(--primary-color); font-family: var(--accent-font); font-weight: 600; font-size: 13px; padding: 9px 22px; border-radius: 30px; cursor: pointer; transition: all 0.3s; }
.proj-filter-btn:hover, .proj-filter-btn.active { background: var(--accent-color); border-color: var(--accent-color); color: #fff; box-shadow: 0 6px 18px rgba(239,127,27,0.28); }

/* Gallery grid */
.proj-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 16px; }
.proj-gallery-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.proj-gallery-item-tall { grid-row: span 2; }
.proj-gallery-item-wide { grid-column: span 2; }
.proj-gallery-img { width: 100%; height: 100%; }
.proj-gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.proj-gallery-item:hover .proj-gallery-img img { transform: scale(1.08); }

/* Overlay */
.proj-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,25,41,0.92) 0%, rgba(12,25,41,0.3) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.35s ease; }
.proj-gallery-item:hover .proj-gallery-overlay { opacity: 1; }
.proj-go-content { transform: translateY(12px); transition: transform 0.35s ease; }
.proj-gallery-item:hover .proj-go-content { transform: translateY(0); }
.proj-go-cat { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; font-family: var(--accent-font); text-transform: uppercase; letter-spacing: 1px; color: var(--accent-color); background: rgba(239,127,27,0.15); padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.proj-go-content h4 { font-family: var(--accent-font); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.proj-go-content p { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.5; }
.proj-go-zoom { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transform: scale(0.7); opacity: 0; transition: all 0.3s ease; }
.proj-gallery-item:hover .proj-go-zoom { transform: scale(1); opacity: 1; }

/* Testimonials */
.proj-testimonial-section { background: var(--secondary-color); padding: 70px 0; }
.proj-testimonial-inner { background: var(--primary-color); border-radius: 24px; padding: 52px 60px; position: relative; max-width: 900px; margin: 0 auto; }
.proj-test-quote { font-size: 56px; color: var(--accent-color); opacity: 0.35; line-height: 1; margin-bottom: 24px; }
.proj-test-swiper p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.proj-test-author strong { display: block; font-family: var(--accent-font); font-size: 16px; color: #fff; font-weight: 700; }
.proj-test-author span { font-size: 13px; color: var(--accent-color); }
.proj-test-pagination { margin-top: 28px; text-align: left; position: static !important; }
.proj-test-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; }
.proj-test-pagination .swiper-pagination-bullet-active { background: var(--accent-color); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .proj-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .sol-intro-title { font-size: 30px; }
    .sol-cat-header { flex-direction: column; gap: 14px; }
    .sol-fp-grid { grid-template-columns: 1fr; }
    .sol-selector-box { flex-direction: column; align-items: flex-start; }
    .sol-sb-btn { width: 100%; text-align: center; }
    .proj-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .proj-gallery-item-tall { grid-row: span 1; }
    .proj-gallery-item-wide { grid-column: span 1; }
    .proj-stat-item { padding: 20px 28px; }
    .proj-stat-divider { display: none; }
    .proj-testimonial-inner { padding: 36px 28px; }
}
@media (max-width: 767px) {
    .sol-cat-pills { gap: 8px; }
    .sol-cat-pill { font-size: 13px; padding: 8px 16px; }
    .proj-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
    .proj-stats-row { gap: 0; }
    .proj-stat-num { font-size: 36px; }
    .sol-compare-table { padding: 20px 16px; }
    .sol-feature-panel { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .proj-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .sol-intro-title { font-size: 26px; }
}
