/*
Theme Name: Don Carlo Garage Design Theme
Theme URI: https://doncarlo.sk
Author: Jakub Dubjel 
Description: WordPress téma pre Don Carlo Garage Design - autorizovaný partner WIŚNIOWSKI.
Version: 1.0.0
*/

/* ========================================
   DON CARLO - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #F7941D;
    --color-red: #E30613;
    --color-dark: #333333;
    --color-text: #666666;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --color-gray: #999999;
    
    --font-family: 'Poppins', 'Inter', Arial, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.15);
    
    --navbar-height: 65px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-red:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn svg {
    margin-right: 8px;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    background-color: var(--color-white);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--navbar-height);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logos-container {
    display: flex;      
    justify-content: center;
    align-items: center;    
    gap: 20px; 
}

.logo-partner {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    margin-left: 12px;
    border-left: 1px solid #ddd;
}

.partner-logo {
    max-height: 40px;
    width: auto;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links .arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

/* Nav Buttons */

.nav-buttons .btn {
    padding: 10px 16px;
    font-size: 13px;
    color: white;
}
.nav-buttons .btn:hover {
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--color-white);
    border-top: 1px solid #eee;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:hover {
    color: var(--color-primary);
    background-color: #f9f9f9;
}

/* Mobile Dropdown */
.mobile-mega-dropdown {
    border-bottom: 1px solid #eee;
}

.mobile-mega-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
}

.mobile-mega-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-mega-dropdown.active .mobile-mega-toggle .arrow {
    transform: rotate(180deg);
}

.mobile-mega-content {
    display: none;
    padding: 0 0 15px 20px;
    background: #f9f9f9;
}

.mobile-mega-dropdown.active .mobile-mega-content {
    display: block;
}

.mobile-mega-section {
    margin-bottom: 15px;
}

.mobile-mega-section h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    padding: 10px 15px;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 4px;
}

.mobile-mega-section a {
    display: block;
    padding: 8px 15px;
    font-size: 13px;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
}

.mobile-mega-section a:last-child {
    border-bottom: none;
}

.mobile-mega-section a:hover {
    color: var(--color-primary);
    background: rgba(247, 148, 29, 0.05);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-buttons .btn {
    width: 100%;
    text-align: center;
}

/* ========================================
   Mega Dropdown Menu
   ======================================== */

/* Mega Dropdown Container */
.mega-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dropdown Trigger */
.mega-dropdown .has-dropdown {
    position: relative;
    padding-right: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.mega-dropdown .has-dropdown .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mega-dropdown:hover .has-dropdown .arrow,
.mega-dropdown.active .has-dropdown .arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    padding-top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 850px;
    max-width: 90vw;
    background: var(--color-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
    overflow: hidden;
    max-height: calc(100vh - 120px);
    margin-top: 8px;
}

.mega-dropdown:hover .mega-menu,
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: all;
}

/* Inner Grid Layout */
.mega-menu-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-height: calc(100vh - 180px);
    overflow: hidden;
}

/* Left Column - Categories */
.mega-left {
    background: #f8f9fa;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}

.category-list {
    padding: 0;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    background: #f8f9fa;
}

.category-item:hover {
    background: rgba(247, 148, 29, 0.05);
    border-left-color: var(--color-primary);
}

.category-item.active {
    background: var(--color-white);
    border-left-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.category-item.active .category-icon {
    transform: translateX(3px);
}

.category-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.category-text p {
    font-size: 11px;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
}

/* Right Column - Subcategories */
.mega-right {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}

.subcategory-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.subcategory-section.active {
    display: block;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subcategory-group {
    margin-bottom: 24px;
}

.subcategory-group h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    padding-bottom: 6px;
    text-transform: uppercase;
}

/* Subcategory group standalone link styling */
.subcategory-group > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--color-text);
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.subcategory-group > a:hover {
    background: rgba(247, 148, 29, 0.1);
    color: var(--color-dark);
}

.subcategory-group > a h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: inherit;
}

.subcategory-group > a::after {
    content: "→";
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.subcategory-group > a:hover::after {
    opacity: 1;
    transform: translateX(2px);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.links-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--color-text);
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.link-item:hover {
    background: rgba(247, 148, 29, 0.1);
    color: var(--color-dark);
}

.link-arrow {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Scrollbar Styling */
.mega-left::-webkit-scrollbar,
.mega-right::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.mega-left::-webkit-scrollbar-track,
.mega-right::-webkit-scrollbar-track,
.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mega-left::-webkit-scrollbar-thumb,
.mega-right::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

.mega-left::-webkit-scrollbar-thumb:hover,
.mega-right::-webkit-scrollbar-thumb:hover,
.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #e6830c;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    padding-top: 12rem;
}

.hero-text {
    max-width: 650px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-description strong {
    color: var(--color-primary);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    border-radius: 4px;
    border: 2px solid transparent;
    text-align: center;
}

.hero-buttons .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-buttons .btn-red {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Yellow Banner
   ======================================== */
.yellow-banner {
    background-color: var(--color-primary);
    padding: 14px 0;
}

.yellow-banner p {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: 60px 0;
    background-color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid #eee;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    background-color: var(--color-dark);
    padding: 14px;
    text-align: center;
}

.card-title h3 {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Product Cards - Hover Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: var(--color-white);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-content {
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

.overlay-content h4 {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(247, 148, 29, 0.3);
    padding-bottom: 8px;
}

.overlay-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.overlay-content .certificates {
    font-size: 11px;
    color: var(--color-primary);
    line-height: 1.5;
    padding: 10px;
    background: rgba(247, 148, 29, 0.1);
    border-left: 3px solid var(--color-primary);
    margin-top: 15px;
}

.overlay-content .certificates strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Custom scrollbar for overlay */
.overlay-content::-webkit-scrollbar {
    width: 4px;
}

.overlay-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.overlay-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.overlay-content::-webkit-scrollbar-thumb:hover {
    background: #ff9c32;
}

/* Zoom effect on card image on hover */
.product-card:hover .card-image img {
    transform: scale(1.08);
}

/* Card title stays visible */
.product-card:hover .card-title {
    background-color: rgba(51, 51, 51, 0.9);
    z-index: 3;
}


/* ========================================
   Akcie Section
======================================== */
.akcie-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.akcie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.akcia-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.akcia-card:hover {
    transform: translateY(-5px);
}

.akcia-card img {
    width: 250px;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .akcie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akcie-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.accent-bar {
    width: 4px;
    height: 50px;
    background-color: var(--color-primary);
}

.about-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-text {
    padding-left: 20px;
}

.about-text p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* About Images */
.about-images {
    padding-top: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.image-tall {
    grid-row: span 2;
}

.image-tall img,
.image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    min-height: 150px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 0;
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-detail {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.contact-detail .label {
    font-size: 13px;
    color: var(--color-text);
}

.contact-detail .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-detail .value:hover {
    color: var(--color-primary);
}

.company-info {
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.company-info p {
    font-size: 12px;
    color: var(--color-text);
    margin-bottom: 4px;
}

/* Contact Map */
.contact-map h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.address p {
    font-size: 14px;
    color: var(--color-dark);
    margin: 0;
}

/* ========================================
   Sponsors Logo Slider Section
   ======================================== */
.sponsors-section {
    background-color: var(--color-white);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-title {
    text-align: center;
    margin-bottom: 30px;
}

.sponsors-title h4 {
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    margin: 0;
}

.sponsors-title h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
}

.sponsors-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: slideLeft 20s linear infinite;
    will-change: transform;
}

.sponsor-slide {
    flex: 0 0 auto;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.sponsor-slide:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.sponsor-slide img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
    object-fit: contain;
}

.sponsor-slide:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 6 - 50px * 6));
    }
}

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

/* Gradient overlay for fade effect on edges */
.sponsors-wrapper::before,
.sponsors-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.sponsors-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.sponsors-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* ========================================
   Footer
   ======================================== */

/* Orange Divider */
.orange-divider {
    height: 4px;
    background-color: var(--color-primary);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.social-link .icon {
    width: 18px;
    height: 18px;
    background-size: contain;
}
.social-link img {
    height: 20px;
    width: auto;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-gray);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright p {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray);
    margin: 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   Scroll Lock
   ======================================== */
body.mega-menu-open,
body.mobile-menu-open {
    overflow: hidden;
}

/* ========================================
   Icon Styles
   ======================================== */
.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.icon-facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

.icon-instagram {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073z'/%3E%3C/svg%3E");
}

.icon-youtube {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets (1024px and down) */
@media (max-width: 1024px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mega-menu {
        width: 700px;
        max-width: 95vw;
        max-height: calc(100vh - 140px);
    }
    
    .mega-menu-inner {
        grid-template-columns: 240px 1fr;
        max-height: calc(100vh - 200px);
    }
    
    .category-item {
        padding: 14px 16px;
    }
    
    .category-text h4 {
        font-size: 13px;
    }
    
    .category-text p {
        font-size: 10px;
    }
    
    .mega-right {
        padding: 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sponsor-slide {
        width: 160px;
        height: 70px;
        padding: 12px 18px;
    }
    
    @keyframes slideLeft {
        100% {
            transform: translateX(calc(-160px * 6 - 50px * 6));
        }
    }
}

/* Mobile Landscape (768px and down, landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    :root {
        --navbar-height: 70px;
    }
    
    .mega-menu {
        position: fixed;
        top: var(--navbar-height) !important;
        left: 10px;
        right: 10px;
        transform: none;
        max-height: calc(100vh - 90px);
        border-radius: 8px;
        margin-top: 0;
    }
    
    .mega-dropdown.active .mega-menu {
        transform: none;
    }
    
    .mega-menu-inner {
        grid-template-columns: 200px 1fr;
        max-height: calc(100vh - 110px);
    }
    
    .mobile-menu.active {
        max-height: calc(100vh - var(--navbar-height));
    }
}

/* Mobile Portrait (768px and down, portrait) */
@media (max-width: 768px) and (orientation: portrait) {
    :root {
        --navbar-height: 70px;
    }
    
    .navbar {
        height: var(--navbar-height);
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .logo-partner {
        display: none;
    }
    
    .mega-menu {
        position: fixed;
        top: var(--navbar-height) !important;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: calc(100vh - var(--navbar-height));
        border-radius: 0;
        transform: translateY(100%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
        z-index: 10;
    }
    
    .mega-dropdown.active .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: 100%;
    }
    
    .mega-left {
        max-height: 180px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .category-list {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        gap: 8px;
        max-height: 180px;
    }
    
    .category-item {
        flex-direction: column;
        align-items: flex-start;
        min-width: 160px;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px;
        background: var(--color-white);
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .category-item.active {
        border-bottom-color: var(--color-primary);
    }
    
    .category-icon {
        margin-bottom: 8px;
    }
    
    .mega-right {
        max-height: calc(100vh - 250px);
        padding: 20px;
        overflow-y: auto;
    }
    
    .section-title {
        font-size: 16px;
        text-align: center;
    }
    
    .subcategory-group {
        margin-bottom: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu.active {
        max-height: calc(100vh - var(--navbar-height));
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-text {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-tall {
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sponsors-section {
        padding: 25px 0;
    }
    
    .sponsors-title h4 {
        font-size: 16px;
    }
    
    .sponsors-track {
        gap: 30px;
    }
    
    .sponsor-slide {
        width: 120px;
        height: 55px;
        padding: 8px 12px;
    }
    
    .sponsors-wrapper::before,
    .sponsors-wrapper::after {
        width: 60px;
    }
    
    @keyframes slideLeft {
        100% {
            transform: translateX(calc(-120px * 6 - 30px * 6));
        }
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    :root {
        --navbar-height: 60px;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mega-right {
        max-height: calc(100vh - 240px);
        padding: 16px;
    }
    
    .category-item {
        min-width: 140px;
        padding: 10px;
    }
    
    .category-text h4 {
        font-size: 12px;
    }
    
    .category-text p {
        font-size: 9px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .subcategory-group h5 {
        font-size: 12px;
    }
    
    .link-item {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .mobile-mega-toggle {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .mobile-mega-section h5 {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .mobile-mega-section a {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .mobile-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .logo-partner {
        display: none;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-header h2 {
        font-size: 24px;
    }
    
    .sponsors-section {
        padding: 20px 0;
    }
    
    .sponsors-title h4 {
        font-size: 14px;
    }
    
    .sponsors-track {
        gap: 20px;
    }
    
    .sponsor-slide {
        width: 100px;
        height: 50px;
        padding: 6px 10px;
    }
    
    .sponsors-wrapper::before,
    .sponsors-wrapper::after {
        width: 40px;
    }
    
    @keyframes slideLeft {
        100% {
            transform: translateX(calc(-100px * 6 - 20px * 6));
        }
    }
}

/* Zobrazenie mega-menu, keď má .mega-dropdown triedu active */
.mega-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: all;
}

/* Animácia šípky */
.mega-dropdown.active .has-dropdown .arrow {
    transform: translateY(-50%) rotate(180deg);
}


/* =======================
   Konfigurácia – popisy (figcaption) + nové wrappery
   ======================= */
.config-figure { margin: 0; }
.config-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
  background: rgba(0,0,0,.04);
}
.config-item:hover { transform: translateY(-2px); }

.config-item--normal,
.config-item--square { aspect-ratio: 1 / 1; }

.config-figure--wide { grid-column: span 2; }
.config-item--wide { aspect-ratio: 5 / 1; }

.config-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.config-item__desc{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  opacity: .85;
}

/* =======================
   Výhody – 2 podsekcie s obrázkom + podnadpisom
   ======================= */
.benefits-subsection { margin-top: 26px; }
.benefits-subheader { margin-bottom: 14px; }
.benefits-subheader h3 { margin: 0 0 6px; }
.benefits-subtitle { margin: 0; opacity: .8; }

.benefits-grid--media { margin-top: 10px; }
.benefit-card--media { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: start; }
.benefit-media img { width: 200px; height: auto; border-radius: 8px; object-fit: cover; display: block; }
.benefit-kicker { font-size: 12px; letter-spacing: .02em; opacity: .8; margin-bottom: 4px; }
.benefit-body h4 { margin: 0 0 6px; }
.benefit-body p { margin: 0; opacity: .9; }

/* ========================================
   Referencie (CPT: reference)
   ======================================== */
.hero.hero--inner .hero-bg { min-height: 360px; }

.references-section{ padding: 60px 0; background: #fff; }
.references-list{ display: grid; gap: 50px; }

.reference-block{
  border-radius: 8px;
  padding: 26px;
  background: #f8f9fa;
}

.reference-block__header{ margin-bottom: 18px; }
.reference-block__title{ margin: 0 0 6px; font-size: 26px; line-height: 1.2; }
.reference-block__meta{ margin: 0; font-weight: 600; color: var(--color-dark); opacity: 0.8; }
.reference-block__desc{ margin: 10px 0 0; color: var(--color-dark); opacity: 0.85; }

.reference-block__grid.gallery-grid{ grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.references-single{ padding: 60px 0; }
.references-single__back{ display: inline-block; margin-bottom: 14px; font-weight: 600; }
.references-single__title{ margin: 0 0 6px; }
.references-single__meta{ margin: 0; opacity: 0.8; font-weight: 600; }
.references-single__desc{ margin: 10px 0 0; opacity: 0.85; }

@media (max-width: 768px){
  .reference-block{ padding: 18px; }
  .reference-block__title{ font-size: 22px; }
}


/* -----------------------
        ABOUT
------------------------- */
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .highlight {
    color: #F7941D;
}

.about-hero .lead {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #F7941D;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    margin: 40px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.profile-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.profile-section p {
    color: #555;
    line-height: 1.7;
}

.expo-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

.expo-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.expo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.expo-list li {
    font-size: 14px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.expo-list li::before {
    content: "—";
    color: #F7941D;
    position: absolute;
    left: 0;
}

.service-pricing {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
}

.pricing-price {
    font-size: 28px;
    font-weight: 800;
    color: #F7941D;
}

.pricing-desc {
    font-size: 13px;
    color: #666;
}

.service-note {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Catalogue Section */
.catalogue-section,
.techlist-section {
    background: #f8f9fc;
    border-radius: 24px;
    padding: 48px;
    margin: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-intro p {
    color: #666;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.catalogue-category {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #edf0f5;
}

.catalogue-category h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F7941D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px dashed #eee;
}

.product-list li::before {
    content: "→";
    color: #F7941D;
    position: absolute;
    left: 0;
    font-weight: 600;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.product-list a:hover {
    color: #F7941D;
    padding-left: 3px;
}

.catalogue-note {
    text-align: right;
    margin-top: 24px;
    font-size: 14px;
    color: #F7941D;
    font-weight: 600;
}

/* Certifications Section */
.certifications-section {
    padding: 20px 0 60px;
}

.cert-banner {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.cert-badge {
    display: flex;
    flex-direction: column;
}

.cert-badge span {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.cert-badge small {
    display: block;
    font-size: 12px;
    color: #777;
}

.cert-list {
    display: flex;
    gap: 30px;
}

.cert-list span {
    font-size: 14px;
    color: #555;
}

.cert-description {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-section {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
    .catalogue-section,
    .techlist-section,
    .profile-section {
        padding: 28px;
    }
    .expo-list {
        grid-template-columns: 1fr;
    }
    .about-hero {
        padding: 120px 0 40px;
    }
    .about-hero h1 {
        font-size: 32px;
    }
    .service-pricing {
        flex-direction: column;
        gap: 16px;
    }
    .cert-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cert-list {
        flex-direction: column;
        gap: 10px;
    }
}


/* -----------------------
    PLOTY NA KĽÚČ
------------------------ */

.two-columns {
    display: flex;
    gap: 40px;
}

.two-columns .col {
    flex: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
