/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #e4580a;
    --red: #af1012;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #C6320E;
}

.header-container {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a.active {
    color: #B9171B;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Mobile nav - hidden on desktop */
.mobile-nav {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    background-image: url("/assets/img/cover.png");
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--red);
    margin-top: 74px;
}
/*
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), #00000000 42%), linear-gradient(rgba(19, 26, 40, 0.65), rgba(19, 26, 40, 0.65));
}*/

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 30rem;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    padding-block: 4.5rem;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 43rem;
    margin-top: 4rem;
}

.eyebrow {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 0;
    font-weight: 800;
    color: #B9191D;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.btn-ghost {
    background: var(--white);
    border: 2px solid var(--white);
    color: #B9171B;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(224, 230, 240, 0.9);
    padding: 1.6rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.hero-panel h2 {
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
    color: var(--dark);
}

.hero-panel ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    color: var(--gray);
}

.hero-panel ul li {
    padding: 0.4rem 0;
    padding-left: 1.6rem;
    position: relative;
}

.hero-panel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
}

.hero-call {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 0.2rem;
}

.hero-call span {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a8391;
    font-weight: 600;
}

.hero-call a {
    text-decoration: none;
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.hero-call a:hover {
    color: var(--orange);
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #B9171B;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 88, 10, 0.3);
}

.btn-secondary {
    background: #B9171B;
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 88, 10, 0.3);
}

.section-quote {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #B9191D !important;
  font-style: italic;
  line-height: 1.3;
  position: relative;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    /*width: 80px;*/
    width: 100%;
    height: 4px;
    background: #E45A0B;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #B9171B;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    background: #B9171B;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .label {
    color: var(--gray);
    margin-top: 5px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}

.service-icon,
.service-icon-outline {
    width: 80px;
    height: 80px;
    background: #edeeef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    /*fill: var(--white);*/
    fill: #B9171B;
}

.service-icon-outline svg {
    width: 40px;
    height: 40px;
    /*fill: var(--white);*/
    fill: #edeeef;
    stroke: #B9171B;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== REFERENCES SECTION ===== */
.references {
    background: var(--light-gray);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reference-item {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid #d8dee6;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    padding: 20px;
    text-align: center;
}

.reference-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.reference-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.reference-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reference-text {
    font-size: 1.03rem;
    line-height: 1.45;
    font-style: italic;
    color: #2f435a;
    min-height: 92px;
    margin-bottom: 16px;
}

.reference-name {
    font-size: 1.2rem;
    line-height: 1.15;
    color: #15263b;
    margin-bottom: 8px;
}

.reference-company {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #6f7e91;
    text-transform: uppercase;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    background: var(--light-gray);
}

.clients-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.clients-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-toggle:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.clients-toggle[aria-expanded="true"] {
    border-color: var(--orange);
    color: var(--orange);
}

.clients-toggle-icon {
    transition: transform 0.3s ease;
}

.clients-toggle[aria-expanded="true"] .clients-toggle-icon {
    transform: rotate(180deg);
}

.clients-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.clients-content.active {
    max-height: 2000px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
}

.client-logo {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 100px;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* ===== LOCATIONS SECTION ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.location-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    margin-top: 28px;
}

.location-info {
    padding: 25px;
}

.location-info h3 {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 10px;
    height: 58px;
    overflow: hidden;
}

.location-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 8px;
    height: 48px;
    overflow: hidden;
}

.location-info .location-title {
    margin-bottom: 8px;
    min-height: 106px;
    line-height: 1.35;
}

.location-info .location-title strong {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #E45A0B;
}

.location-info .location-title span {
    display: block;
    margin-top: 6px;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 400;
}

.location-info .hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 700;
    height: 24px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-map {
    margin-top: 10px;
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 10px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--gray);
}

.contact-item-text a:hover {
    color: var(--orange);
}

.contact-wrapper--centered {
    display: flex;
    justify-content: center;
}

.contact-info--centered {
    max-width: 700px;
    width: 100%;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-items-grid .contact-item {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
}

.contact-items-grid .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E45A0B;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== LOCATION MODAL ===== */
.location-card {
    cursor: pointer;
}

.location-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.location-modal-overlay.active {
    display: flex;
}

.location-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.location-modal-close:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.location-modal-body {
    padding: 40px;
}

.location-modal-title {
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 8px;
    padding-right: 40px;
}

.location-modal-address {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.location-modal-section {
    margin-bottom: 25px;
}

.location-modal-section h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.location-modal-section p,
.location-modal-section div {
    color: var(--gray);
    line-height: 1.7;
}

.location-modal-section a {
    color: var(--orange);
    transition: color 0.2s ease;
}

.location-modal-section a:hover {
    color: var(--red);
}

.location-modal-map {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
}

.location-modal-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.location-modal-desc {
    margin-top: 5px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .location-modal-desc {
        margin-top: 20px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .services-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-contacts-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-quote {
        font-size: 22px;
    }
    .location-modal-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-modal-body {
        padding: 25px;
    }

    .location-modal-title {
        font-size: 1.4rem;
    }

    .location-modal-map {
        height: 220px;
    }

    .location-modal {
        max-height: 95vh;
        border-radius: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            gap 0.35s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 30px 0;
        gap: 20px;
        border-top: 2px solid #C6320E;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile nav */
    .mobile-nav {
        position: fixed;
        top: 62px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .mobile-nav.active {
        display: flex;
        max-height: 500px;
        padding: 20px 0;
        gap: 5px;
        border-top: 2px solid #C6320E;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 30px;
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        text-align: center;
    }

    .mobile-nav a:hover {
        color: var(--orange);
    }

    /* Hide desktop submenu on mobile */
    .submenu {
        display: none;
    }

    .hero {
        margin-top: 62px;
    }

    .hero-grid {
        min-height: 22rem;
        padding-block: 3rem;
    }

    .hero-panel {
        max-width: 28rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .locations-grid,
    .references-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header p {
        font-size: 1rem;
        margin-top: 15px;
    }

    section {
        padding: 45px 0;
    }

    /* --- Stats: 2 columns on mobile --- */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .stat-item .number {
        font-size: 2rem;
    }

    .stat-item .label {
        font-size: 0.85rem;
    }

    /* --- Service cards: smaller icon, tighter padding --- */
    .service-icon,
    .service-icon-outline {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .service-icon svg,
    .service-icon-outline svg {
        width: 30px;
        height: 30px;
    }

    .service-card {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.92rem;
    }

    .services-grid,
    .references-grid,
    .locations-grid,
    .clients-grid {
        gap: 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-toggle {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .client-logo {
        padding: 15px;
        min-height: 80px;
    }

    .client-logo img {
        max-height: 60px;
    }

    /* --- References: tighter layout --- */
    .reference-item {
        padding: 18px;
        border-radius: 14px;
        text-align: center;
    }

    .reference-avatar {
        width: 64px;
        height: 64px;
    }

    .reference-text {
        font-size: 0.95rem;
        min-height: auto;
        margin-bottom: 12px;
    }

    .reference-name {
        font-size: 1.05rem;
    }

    .reference-company {
        font-size: 0.85rem;
    }

    /* --- Location cards: tighter info --- */
    .location-card img {
        width: 80px;
        height: 80px;
        margin-top: 22px;
    }

    .location-info {
        padding: 18px;
    }

    .location-info h3 {
        font-size: 1.1rem;
        height: auto;
    }

    .location-info .location-title {
        min-height: auto;
    }

    .location-info .location-title strong {
        font-size: 1.15rem;
    }

    .location-info p {
        height: auto;
    }

    /* --- Contact section --- */
    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-items-grid .contact-item {
        padding: 22px 20px;
    }

    .contact-form {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 18px;
    }

    .contact-item-icon {
        width: 42px;
        height: 42px;
    }

    .contact-item-icon svg {
        width: 20px;
        height: 20px;
    }

    /* --- Footer tighter --- */
    .footer-content {
        gap: 30px;
    }

    footer {
        padding: 40px 0 25px;
    }
}

@media (max-width: 480px) {
    .location-modal-body {
        padding: 20px;
    }

    .location-modal-title {
        font-size: 1.2rem;
    }

    .location-modal-close {
        top: 10px;
        right: 12px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0;
        white-space: normal;
    }

    .eyebrow {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-grid {
        min-height: 18rem;
        padding-block: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .hero-actions .btn,
    .hero-actions .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .btn-ghost {
        border-width: 2px;
    }

    /* --- Hero panel improvements --- */
    .hero-panel {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .hero-panel h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-panel ul li {
        padding: 0.3rem 0;
        padding-left: 1.4rem;
        font-size: 0.9rem;
    }

    .hero-panel ul li::before {
        width: 6px;
        height: 6px;
    }

    .hero-call {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-call span {
        font-size: 0.75rem;
    }

    .hero-call a {
        font-size: 1.1rem;
    }

    /* --- Header logo smaller --- */
    .logo img {
        height: 42px;
    }

    .header-container {
        padding: 10px 16px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-item .number {
        font-size: 1.6rem;
    }

    .stat-item .label {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .btn {
        padding: 12px 30px;
    }

    section {
        padding: 35px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 25px 18px;
    }

    .clients-toggle {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 20px;
    }

    .client-logo {
        padding: 12px;
        min-height: 70px;
        border-radius: 10px;
    }

    .client-logo img {
        max-height: 50px;
    }

    .header-container {
        justify-content: space-between;
    }
}

/* ===== SUBMENU ===== */
.submenu {
    background: var(--white);
    border-bottom: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.submenu-list {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 15px 20px;
    margin: 0 auto;
    list-style: none;
}

.submenu-item {
    position: relative;
}

.submenu-item>a {
    display: block;
    padding: 10px 14px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.submenu-item>a:hover {
    background: var(--light-gray);
    color: var(--orange);
}

.submenu-item.active>a {
    background: var(--gradient);
    color: var(--white);
}

.submenu-item.active>a:hover {
    color: var(--white);
}

/* Dropdown for Příběh lakovny */
.submenu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 250px;
    z-index: 100;
    list-style: none;
}

.submenu-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.submenu-item.has-dropdown .submenu-dropdown.open {
    display: block;
}

.submenu-item.has-dropdown.hash-active .submenu-dropdown {
    display: none !important;
}

.submenu-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.submenu-dropdown li a:hover {
    background: var(--light-gray);
    color: var(--orange);
}

/* Page content styles */
.page-content {
    padding: 60px 0;
    min-height: 400px;
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    display: block;
    text-align: center;
}

.page-content h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #E45A0B;
    border-radius: 2px;
}

/*
.page-content h2 {
    font-size: 1.8rem;
    color: var(--orange);
    margin: 40px 0 20px;
    padding-top: 20px;
}*/

.page-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content strong {
    color: var(--dark);
}

.page-content .content-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.page-content .content-images figure {
    text-align: center;
}

.page-content .content-images img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.page-content .content-images img:hover {
    transform: scale(1.02);
}

.page-content .content-images figcaption {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Komu lakujeme - company logos grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.company-logo {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 100px;
    border: 1px solid #e5e7eb;
}

.company-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.company-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Kdo vam lakuje - contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 30px 0;
}

.contact-person {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-person img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-person-info h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-person-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-person-info a {
    color: var(--orange);
}

.contact-person-info a:hover {
    color: var(--red);
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Locations grid for kdo-vam-lakuje */
.locations-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.location-info-item h3 {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 10px;
}

.location-info-item p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.location-info-item a {
    color: var(--orange);
    font-size: 0.9rem;
}

/* Kdo vam lakuje - company + contacts layout */
.company-contacts-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.company-sidebar-figure {
    margin-top: 20px;
}

.company-sidebar-figure img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-sidebar-figure figcaption {
    margin-top: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Zamestnani - employees grid */
.employees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.employee-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.employee-card h3 {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: auto;
}

.employee-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.employee-card img:hover {
    transform: scale(1.03);
}

.employee-card p {
    font-size: 0.9rem;
}

/* Responsive for page content */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }

    .submenu-list {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 3px;
        padding: 10px 15px;
        -webkit-overflow-scrolling: touch;
    }

    .submenu-item>a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .submenu-dropdown {
        position: absolute;
        left: 0;
        transform: none;
        width: 250px;
        min-width: unset;
    }

    .submenu-dropdown::before {
        left: 30px;
        transform: none;
    }

    .page-content {
        padding: 40px 0;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .page-content h2 {
        font-size: 1.4rem;
    }

    .page-content .content-images {
        grid-template-columns: 1fr;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-contacts-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .company-sidebar {
        text-align: center;
    }

    .company-sidebar-figure img {
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-person {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-person img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .employees-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .employee-card img {
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }

    .locations-info-grid {
        grid-template-columns: 1fr;
    }

    .company-sidebar-figure img {
        max-width: 100%;
    }

    .contact-person img {
        width: 80px;
        height: 80px;
    }

    .employee-card img {
        height: 150px;
    }
}

/* ===== LIGHTBOX GALLERY ===== */
.gallery-link {
    display: block;
    cursor: pointer;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 3002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    line-height: 1;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
    letter-spacing: 0.05em;
}

.lightbox-nav.hidden {
    display: none;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 2rem;
        width: 42px;
        height: 42px;
    }

    .lightbox-content img {
        max-width: 95vw;
        max-height: 75vh;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}
