/* ==========================================
   Základní styly a Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F2A933;
    --secondary-color: #5F5F5F;
    --light-gray: #F2F2F2;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #F2A933 0%, #d99020 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Topbar
   ========================================== */
.topbar {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary-color);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.topbar-item:hover {
    background: rgba(242, 169, 51, 0.2);
    color: var(--primary-color);
}

.topbar-icon {
    font-size: 1.1rem;
}

.topbar-text {
    font-weight: 400;
}

a.topbar-item .topbar-text {
    font-weight: 500;
}

/* ==========================================
   Navigace
   ========================================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 45px;
    z-index: 999;
    transition: all 0.3s ease;
}

.topbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 10px rgba(242, 169, 51, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   Dropdown Menu
   ========================================== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 25px var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    list-style: none;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

/* Zobrazení dropdown při hoveru na desktopu */
.dropdown:hover .dropdown-menu,
.dropdown.hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Zobrazení dropdown při kliknutí (mobil) */
.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

/* ==========================================
   Hero Sekce
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 220px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../obrazky/depositphotos_146684065-stock-photo-different-electrical-tools.jpeg') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242, 169, 51, 0.1) 0%, rgba(95, 95, 95, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-color);
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* ==========================================
   Tlačítka
   ========================================== */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(242, 169, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d99020 0%, #F2A933 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 169, 51, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==========================================
   Sekce
   ========================================== */
.section {
    padding: 80px 0;
}

.section:nth-child(odd) {
    background: var(--white);
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* ==========================================
   O nás - Hlavní stránka
   ========================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--secondary-color);
}

/* ==========================================
   O nás - Podstránka
   ========================================== */
.hero-subpage {
    padding: 180px 0 80px;
}

.about-page {
    background: var(--light-gray);
}

.about-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-content {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.about-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-box p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--secondary-color);
    text-align: justify;
}

.about-features {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    margin-bottom: 50px;
}

.about-features h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d99020 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(242, 169, 51, 0.3);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}

.about-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

/* ==========================================
   Certifikáty
   ========================================== */
.certificates {
    background: var(--white);
}

.certificates-description {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--secondary-color);
    background: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    line-height: 1.8;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.certificate-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: #d99020;
}

.certificate-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ==========================================
   Služby
   ========================================== */
.services-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    border: 2px solid var(--primary-color);
}

.services-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.services-intro p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    border-left: 1px solid rgba(242, 169, 51, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-top-color: #d99020;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.services-description {
    max-width: 950px;
    margin: 50px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.services-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: justify;
}

/* ==========================================
   Otevírací doba a Rezervace
   ========================================== */
.opening-hours {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d99020 100%);
    color: var(--white);
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.opening-hours-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.opening-hours-card:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--white);
}

.opening-hours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark);
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(95, 95, 95, 0.2);
    color: var(--secondary-color);
}

.hours-item.emergency {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    background: linear-gradient(135deg, rgba(242, 169, 51, 0.2) 0%, rgba(217, 144, 32, 0.2) 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.day {
    font-weight: 600;
    color: var(--secondary-color);
}

.time {
    font-weight: 700;
    color: var(--dark);
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item a:hover::after {
    width: 100%;
}

/* ==========================================
   Ceník
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
    padding-top: 20px;
}

.price-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 169, 51, 0.1), transparent);
    transition: left 0.5s ease;
}

.price-card:hover::before {
    left: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-top-color: #d99020;
}

.price-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border-top: none;
    box-shadow: 0 15px 40px rgba(242, 169, 51, 0.5);
    position: relative;
    margin-top: 30px;
    z-index: 10;
}

.price-card.featured::before {
    content: '⭐ DOPORUČUJEME';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.price-card.featured h3 {
    color: var(--white);
}

.price-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.price-card.featured .price {
    color: var(--white);
}

.price-note {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: var(--secondary-color);
}

/* ==========================================
   Kontakt
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-top-width: 5px;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(-5deg);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #d99020;
}

.contact-hours {
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
}

.contact-hours h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-hours p {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ==========================================
   Služby - Detailní přehled
   ========================================== */
.services-detailed {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card-detailed {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.service-card-detailed h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-detailed p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Elektroinstalace Detail Sekce */
.elektro-detail {
    padding: 80px 0;
    background: var(--white);
}

.detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.detail-header h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-header .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-list {
    display: grid;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 25px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.detail-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 3px 10px var(--shadow);
}

.detail-text h4 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-text p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.cta-box {
    margin-top: 60px;
    text-align: center;
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(242, 169, 51, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

/* ==========================================
   Kontaktní stránka
   ========================================== */
.contact-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Kontaktní formulář */
.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form-section h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 169, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gdpr-text {
    margin-top: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
}

.submit-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(242, 169, 51, 0.3);
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 169, 51, 0.4);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Kontaktní informace */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-section h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-grid {
    display: grid;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #d99020;
    text-decoration: underline;
}

/* Mapa */
.map-container {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    display: block;
    border-radius: 12px;
}

/* ==========================================
   Ceníková stránka
   ========================================== */
.pricing-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.price-card-page {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.price-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.price-card-page:hover::before {
    transform: scaleX(1);
}

.price-header {
    margin-bottom: 15px;
}

.price-header h3 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 60px;
}

.price-description {
    flex: 1;
    margin-bottom: 20px;
}

.price-description p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    justify-content: center;
}

.price-from {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 400;
}

.price-value {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Transport Notice */
.transport-notice {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.transport-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.transport-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.transport-text p {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* CTA Button Secondary */
.cta-button-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-left: 15px;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

/* ==========================================
   Fotogalerie stránka
   ========================================== */
.gallery-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-category {
    margin-bottom: 80px;
}

.gallery-category:last-of-type {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h2 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 20px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    aspect-ratio: 4 / 3;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================
   Animace
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.section-title {
    animation: fadeInUp 0.8s ease;
}

.service-card,
.price-card,
.certificate-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1),
.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2),
.price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3),
.price-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4),
.price-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5),
.price-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6),
.price-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ==========================================
   Garážová Vrata - Stránka
   ========================================== */
.hero-garage {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(95, 95, 95, 0.9) 100%),
                url('../garazova_vrata/sekcni/depositphotos_229504108-stock-photo-carport.jpeg') center/cover;
}

.garage-intro {
    background: var(--white);
}

.garage-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--secondary-color);
    text-align: justify;
}

/* Co nabízíme */
.services-offer {
    background: var(--light-gray);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.offer-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-top-color: #d99020;
}

.offer-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.15) rotate(5deg);
}

.offer-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.offer-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: justify;
}

/* Proč si vybrat nás */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
    position: relative;
    padding-top: 70px;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.why-number {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: justify;
}

/* Naše služby pro */
.services-for {
    background: var(--light-gray);
}

.services-for-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.services-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.services-for-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid var(--primary-color);
}

.services-for-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: #d99020;
}

.services-for-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.services-for-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-for-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: justify;
}

/* Závěrečná zpráva */
.final-message {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../garazova_vrata/sekcni/depositphotos_229504108-stock-photo-carport.jpeg') center/cover;
    opacity: 0.05;
}

.final-message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-message-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(242, 169, 51, 0.95);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-message-content > p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: justify;
    border: 3px solid var(--primary-color);
}

.final-cta {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.final-cta h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.final-cta .btn {
    font-size: 1.1rem;
    padding: 18px 50px;
}

/* ==========================================
   Fotogalerie a DURAPRINT sekce
   ========================================== */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.duraprint-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.duraprint-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.duraprint-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--secondary-color);
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    border: 3px solid var(--primary-color);
}

.duraprint-intro strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ==========================================
   Responzivní design
   ========================================== */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .topbar-contacts {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .topbar {
        font-size: 0.85rem;
        position: relative;
    }

    .navbar {
        position: sticky;
        top: 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-subpage {
        padding: 100px 0 60px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 80px 0 30px;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-content {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .opening-hours-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-intro,
    .services-description,
    .certificates-description {
        padding: 25px 20px;
    }

    .about-features {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .why-grid,
    .services-for-grid {
        grid-template-columns: 1fr;
    }

    .intro-text,
    .final-cta {
        padding: 25px 20px;
    }

    .final-message-content h2 {
        font-size: 2rem;
        padding: 20px 25px;
    }

    .final-message-content > p {
        padding: 30px 25px;
    }

    .final-message-content h2 {
        font-size: 2rem;
    }

    /* Dropdown menu na mobilech */
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        background: rgba(242, 169, 51, 0.1);
        border-radius: 0;
        padding: 5px 0;
        margin-top: 5px;
    }

    .dropdown-menu li {
        border-left: 3px solid var(--primary-color);
    }

    .dropdown-menu a {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    /* Fotogalerie na tabletech */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Služby stránka - tablety */
    .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .detail-item {
        padding: 25px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    /* Kontakt stránka - tablety */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section,
    .contact-info-section {
        width: 100%;
    }

    /* Ceník - tablety */
    .pricing-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .transport-notice {
        padding: 25px 30px;
    }

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }

    /* Fotogalerie - tablety */
    .gallery-grid-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .category-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .topbar-item {
        font-size: 0.8rem;
    }

    .topbar-icon {
        font-size: 1rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-subpage {
        padding: 80px 0 50px;
    }

    .hero-content {
        padding: 25px 20px;
        margin: 0 5px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .logo img {
        height: 50px;
    }

    .service-card,
    .price-card,
    .contact-card,
    .about-box {
        padding: 25px 20px;
    }

    .about-cta {
        padding: 30px 20px;
    }

    .about-cta h3 {
        font-size: 1.5rem;
    }

    .services-intro h3,
    .about-features h3 {
        font-size: 1.5rem;
    }

    .offer-card,
    .why-card,
    .services-for-card {
        padding: 30px 20px;
    }

    .why-card {
        padding-top: 60px;
    }

    .why-number {
        font-size: 2.5rem;
        top: 15px;
        left: 20px;
    }

    .offer-icon,
    .services-for-icon {
        font-size: 3rem;
    }

    .final-message-content h2 {
        font-size: 1.8rem;
        padding: 20px 15px;
    }

    .final-message-content > p {
        font-size: 1rem;
        padding: 25px 20px;
    }

    .final-cta h3 {
        font-size: 1.5rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    /* Fotogalerie na mobilech */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .duraprint-intro {
        padding: 20px 15px;
        font-size: 0.95rem;
    }

    .duraprint-intro strong {
        font-size: 1.05rem;
    }

    /* Služby stránka - mobily */
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-detailed {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 3rem;
    }

    .detail-header h2 {
        font-size: 1.8rem;
    }

    .detail-header .lead {
        font-size: 1rem;
    }

    .detail-item {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    /* Kontakt stránka - mobily */
    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        font-size: 2rem;
    }

    .checkbox-label {
        align-items: flex-start;
    }

    .gdpr-text {
        font-size: 0.8rem;
        padding: 12px;
    }

    /* Ceník - mobily */
    .pricing-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card-page {
        padding: 25px 20px;
    }

    .price-header h3 {
        font-size: 1.1rem;
        min-height: auto;
    }

    .price-description p {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .transport-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .transport-icon {
        font-size: 2.5rem;
    }

    .transport-text h3 {
        font-size: 1.3rem;
    }

    .transport-text p {
        font-size: 1.1rem;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        margin: 5px 0;
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Fotogalerie - mobily */
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .category-header p {
        font-size: 1rem;
    }

    .gallery-category {
        margin-bottom: 50px;
    }

    .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-title {
        font-size: 0.9rem;
    }
}
