/*
Theme Name: ALH-Strechy
Theme URI: https://alh-strechy.cz
Author: ALH-Strechy s.r.o.
Author URI: https://alh-strechy.cz
Description: Téma pro prezentaci střešních prací. Profesionální, vícejazyčné (CZ/SQ).
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: alh-strechy
Tags: business, roofing, bilingual, portfolio
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #c8a84b;
    --accent-dark: #a8892e;
    --dark: #1a1a1a;
    --dark2: #111111;
    --light: #f5f5f0;
    --text: #2d2d2d;
    --muted: #666666;
    --white: #ffffff;
    --border: #e5e5e5;
    --radius: 4px;
    --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--light); }

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-desc {
    color: var(--muted);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 13px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn:hover {
    background: var(--accent-dark);
    color: var(--dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--dark);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
    background: var(--dark2);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--dark);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo-text {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.site-nav a {
    color: #ccc;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.current-menu-item,
.site-nav a[aria-current="page"] {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* lang-switcher removed - single language */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 4rem;
    max-width: 620px;
    z-index: 2;
}

.slide-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.slide-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.slide-dot.active { background: var(--accent); }

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 10;
    width: 0;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-image {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   PROJECTS GRID
   ============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    color: inherit;
}

.project-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #ddd;
}

.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.05);
}

.project-year {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.project-body {
    padding: 1.1rem 1.25rem 1.35rem;
}

.project-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.project-body .project-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.project-body .project-link {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =============================================
   SINGLE PROJECT / GALLERY
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

.project-info-box {
    background: var(--light);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.project-info-box h2 { margin-bottom: 1rem; }

.project-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-detail-item {
    background: var(--white);
    border: 0.5px solid var(--border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
}

.project-detail-item .label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.project-detail-item .value {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
    background: var(--dark);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    color: #aaa;
    font-size: 12px;
    margin-top: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =============================================
   HOW WE WORK
   ============================================= */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.how-card {
    padding: 2rem 1.5rem;
    border: 0.5px solid var(--border);
    border-radius: 6px;
    background: var(--white);
}

.how-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.how-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.how-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* =============================================
   MATERIALS / INFO SECTION
   ============================================= */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.material-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.material-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,168,75,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.material-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.material-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* =============================================
   PARTNERS SLIDER
   ============================================= */
.partners-section {
    padding: 3rem 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.partners-track-wrap {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scroll-partners 20s linear infinite;
    width: max-content;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes scroll-partners {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-item {
    min-width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.partner-item img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.2s;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-item .partner-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
    background: var(--dark);
    color: var(--white);
    border-radius: 6px;
    padding: 2.5rem;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,168,75,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail .info-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.2rem;
}

.contact-detail .info-value {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark2);
    color: #aaa;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-logo-mark {
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--dark);
}

.footer-logo-text {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.85;
    color: #888;
    max-width: 260px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
    color: #888;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 0.85rem;
    font-size: 13px;
    color: #888;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 0.5px solid #222;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    background: var(--dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/page-hero-bg.jpg') center/cover;
    opacity: 0.2;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
    color: #aaa;
    font-size: 13px;
}

.page-hero .breadcrumb a {
    color: var(--accent);
}

/* =============================================
   NOTICE / SUCCESS MESSAGES
   ============================================= */
.notice {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.notice-success {
    background: #f0faf0;
    color: #2a6e2a;
    border: 1px solid #b3deb3;
}

.notice-error {
    background: #fdf0f0;
    color: #8b2020;
    border: 1px solid #e8b3b3;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark2); padding: 1.5rem 2rem; gap: 1.25rem; }
    .site-nav.open { display: flex; }
    .menu-toggle { display: flex; }

    .hero-slider { height: 420px; }
    .slide-content { padding: 0 2rem; max-width: 100%; }
    .slide-content h1 { font-size: 1.9rem; }

    .projects-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; }
    .materials-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .project-details { grid-template-columns: 1fr; }
}

/* =============================================
   HEADER FIX — logo left, nav right, lang rightmost
   ============================================= */


/* =============================================
   PROJECT — no image placeholder
   ============================================= */
.project-no-img {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
    background: var(--dark);
    padding: 4rem 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.cta-inner p {
    color: #aaa;
    font-size: 0.95rem;
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    flex-shrink: 0;
}

.btn-white:hover {
    background: var(--accent);
    color: var(--dark);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2rem;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step:last-child .step-line {
    display: none;
}

.step-body {
    flex: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.step-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* =============================================
   INFO CARDS (Did you know)
   ============================================= */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.info-card-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.info-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
}

/* =============================================
   WHY US
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.why-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    padding: 1.5rem 1.75rem;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faq-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
}

/* =============================================
   LIGHTBOX COUNTER
   ============================================= */
.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 1px;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .step-line { display: none; }
}

@media (max-width: 768px) {
    .process-steps { grid-template-columns: 1fr; }
    .info-cards-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .info-cards-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}
