:root {
    /* Light theme colors */
    --color-primary: hsl(24, 94%, 50%);
    --color-primary-hover: hsl(24, 94%, 45%);
    --color-primary-dark: hsl(24, 94%, 40%);
    --color-text: #333;
    --color-text-light: #666;
    --color-text-lighter: #999;
    --color-background: #fff;
    --color-background-alt: #f5f7fa;
    --color-border: #e2e8f0;
    --color-card-bg: #fff;
    --color-card-border: #edf2f7;
    --color-input-bg: #fff;
    --color-input-border: #e2e8f0;
    --color-input-text: #333;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 0.6rem;
    --transition-speed: 0.3s;
    
    /* RGB версии за прозрачност */
    --color-bg: var(--color-background);
    --bg-rgb: 255, 255, 255;
    --text-rgb: 51, 51, 51;
    
    /* Mobile Menu Variables */
    --header-height: 80px;
    --mobile-menu-height: calc(100vh - var(--header-height));
}

/* Dark Theme Variables */
.dark-mode {
    --color-primary: hsl(24, 94%, 50%);
    --color-primary-hover: hsl(24, 94%, 55%);
    --color-text: #e2e8f0;
    --color-text-light: #cbd5e0;
    --color-text-lighter: #a0aec0;
    --color-background: #1a202c;
    --color-background-alt: #2d3748;
    --color-border: #4a5568;
    --color-card-bg: #2d3748;
    --color-card-border: #4a5568;
    --color-input-bg: #2d3748;
    --color-input-border: #4a5568;
    --color-input-text: #e2e8f0;
    
    /* RGB версии за тъмен режим */
    --color-bg: var(--color-background);
    --bg-rgb: 26, 32, 44;
    --text-rgb: 226, 232, 240;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.5;
    transition: background-color var(--transition-speed) ease,
        color var(--transition-speed) ease,
        border-color var(--transition-speed) ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

p {
    margin-bottom: 1rem;
}

/* Theme transition class for smooth transitions */
.theme-transition,
.theme-transition *,
.theme-transition *:before,
.theme-transition *:after {
    transition-duration: 0.5s !important;
    transition-timing-function: ease-in-out !important;
    transition-delay: 0s !important;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    font-size: 1rem;
}

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

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

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

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

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-dark {
    background-color: #1a202c;
    color: white;
}

.btn-dark:hover {
    background-color: #2d3748;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--color-background);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 0.8rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
    position: relative;
}

.desktop-nav li {
    position: relative;
    overflow: hidden;
}

.desktop-nav a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0.2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 0 0px rgba(var(--text-rgb), 0);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 800px;
    box-shadow: 0 0 0 0 transparent;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px) rotateY(-30deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--color-primary);
    position: absolute;
    left: -5px;
    filter: drop-shadow(0 0 2px rgba(var(--primary-rgb), 0.3));
    font-size: 1.1rem;
}

.desktop-nav a:hover .nav-icon {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.desktop-nav a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(var(--text-rgb), 0.2);
    transform: translateY(-2px) translateZ(10px);
}

.nav-text {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.desktop-nav li:hover .nav-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    filter: blur(8px);
    transform: translateZ(-5px) scale(1.2);
    color: var(--color-primary);
    z-index: -1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; filter: blur(8px); }
    50% { opacity: 0.2; filter: blur(12px); }
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px;
    box-shadow: 0 0 8px var(--color-primary);
    opacity: 0;
}

.desktop-nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
}

.desktop-nav a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(var(--text-rgb), 0.2);
    transform: translateY(-2px) translateZ(10px);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--bg-rgb), 0) 30%, rgba(var(--bg-rgb), 0.03) 70%);
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.desktop-nav a:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.desktop-nav li.active a::before {
    transform: scaleX(1);
    opacity: 1;
}

.desktop-nav li.active a {
    color: var(--color-primary);
}

.pulse-effect {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.7) 0%, rgba(var(--primary-rgb), 0.1) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: -1;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.nav-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 2;
    animation: particle 0.8s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

@keyframes particle {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        transform: translate(
            calc(-50% + (var(--i, 0) - 2) * 30px),
            calc(-50% + ((var(--i, 0) - 2) * 20px))
        ) scale(1);
        opacity: 0;
    }
}

.nav-burst-particle {
    position: absolute;
    background-color: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: burst 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

@keyframes burst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.desktop-nav li.active a {
    animation: active-pulse 2s infinite alternate;
}

@keyframes active-pulse {
    0% {
        text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#mobile-menu-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

#theme-toggle {
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background-color var(--transition-speed) ease,
        transform var(--transition-speed) ease,
        color var(--transition-speed) ease;
}

#theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.dark-mode #theme-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode #theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

#mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dark-mode #mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-btn {
    display: none;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-background);
    box-shadow: var(--shadow-md);
    z-index: 101;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-100%);
    opacity: 0;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

#mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    background-color: rgba(0, 0, 0, 0.05);
}

.dark-mode #mobile-menu-close {
    background-color: rgba(255, 255, 255, 0.05);
}

#mobile-menu-close:hover {
    background-color: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    flex-grow: 1;
}

.menu-item {
    margin-bottom: 0.8rem;
    transform: translateX(-10px);
    opacity: 0;
    animation: slide-in 0.5s forwards;
}

@keyframes slide-in {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-item:nth-child(5) { animation-delay: 0.3s; }

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.02);
    border-left: 3px solid transparent;
}

.dark-mode .mobile-menu a {
    background-color: rgba(255, 255, 255, 0.02);
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 8px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    transform: translateX(5px);
}

.mobile-menu a:hover .menu-icon {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.dark-mode .mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-footer {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-theme {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.mobile-theme-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark-mode .mobile-theme-btn {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-theme-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.mobile-theme-btn i {
    font-size: 1.1rem;
}

.mobile-lang-switcher {
    display: flex;
    justify-content: space-around;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark-mode .mobile-lang-btn {
    background-color: rgba(255, 255, 255, 0.05);
}

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

.mobile-lang-btn:not(.active):hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.flag-icon {
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lang-switcher {
    position: relative;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: background-color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
}

.lang-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.dark-mode .lang-toggle-btn {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .lang-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.lang-toggle-btn i {
    font-size: 0.8rem;
    transition: transform var(--transition-speed) ease;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    display: none;
    min-width: 140px;
    z-index: 100;
    margin-top: 0.5rem;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    transition: transform var(--transition-speed) ease,
        opacity var(--transition-speed) ease;
}

.lang-dropdown.active {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    opacity: 1;
}

.lang-dropdown button {
    background: none;
    border: none;
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: calc(var(--radius) - 0.25rem);
    transition: background-color var(--transition-speed) ease,
        color var(--transition-speed) ease;
}

.lang-dropdown button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
}

.dark-mode .lang-dropdown button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.lang-dropdown button.active {
    color: var(--color-primary);
    font-weight: 600;
    background-color: rgba(255, 159, 64, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-color: #2c3e50;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('main.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Services Section */
.services {
    background-color: var(--color-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 159, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background-color: rgba(255, 159, 64, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.feature-list li:before {
    content: "✓";
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Materials Section */
.materials {
    background-color: var(--color-background-alt);
}

.materials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.material-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

/* We're removing this in favor of the unified selector below */

.material-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 159, 64, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.material-item:hover .material-icon {
    transform: scale(1.15) rotate(-5deg);
    background-color: rgba(255, 159, 64, 0.2);
}

.material-content {
    flex-grow: 1;
}

.material-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.material-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.material-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.spec-tag {
    background-color: rgba(255, 159, 64, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.material-item:hover .spec-tag {
    background-color: rgba(255, 159, 64, 0.2);
    transform: translateY(-2px);
}

.material-delivery {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.material-delivery i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        padding: 0.6rem 0;
        height: var(--header-height);
        position: fixed; /* Fixed position */
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        background-color: var(--color-background);
        z-index: 100;
    }
    
    /* Fix the container inside header to ensure proper margins */
    .header .container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Add padding to the body to offset the fixed header */
    body {
        padding-top: var(--header-height);
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    /* Sections */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    /* Materials */
    .material-item {
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .material-icon {
        margin-bottom: 0.5rem;
        width: 50px;
        height: 50px;
    }
    
    .material-content h3 {
        font-size: 1.3rem;
    }
    
    .material-content p {
        font-size: 0.9rem;
    }
    
    .spec-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Equipment */
    .equipment-content {
        gap: 2.5rem;
    }
    
    .equipment-image {
        height: 200px;
    }
    
    .equipment-text h3 {
        font-size: 1.3rem;
    }
    
    .equipment-text p {
        font-size: 0.9rem;
    }
    
    /* Project Gallery */
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-title {
        font-size: 1.2rem;
        padding: 0.75rem 0.75rem 0.25rem;
    }
    
    .project-description {
        font-size: 0.85rem;
        padding: 0 0.75rem 0.75rem;
    }
    
    /* Contact */
    .contact-form-container h3, 
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    /* Forms */
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    /* Container padding adjustment */
    .container {
        padding: 0 0.75rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    body, html {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
}

/* Equipment Section */
.equipment {
    background-color: var(--color-background);
}

.equipment-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.equipment-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.equipment-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.equipment-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.equipment-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--color-background-alt);
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.project-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.image-count {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.image-count i {
    margin-right: 0.5rem;
}

.view-project-text {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.project-card:hover .view-project-text {
    background-color: var(--color-primary-dark);
}

.project-title {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
    margin: 0;
}

.project-description {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.project-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: var(--color-background);
    border-radius: var(--radius);
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-primary);
}

#modal-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

#modal-description {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-main-image {
    position: relative;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-main-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 90vh;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.modal-prev {
    left: 1rem;
}

.modal-next {
    right: 1rem;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--color-primary);
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
}

.modal-thumbnail {
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.modal-thumbnail:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.modal-thumbnail.active {
    opacity: 1;
    border: 2px solid var(--color-primary);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .modal-main-image {
        height: 300px;
    }

    .modal-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .modal-thumbnail {
        height: 60px;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* Call to Action Section */
.cta {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact {
    background-color: var(--color-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-container h3,
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-input-border);
    background-color: var(--color-input-bg);
    color: var(--color-input-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

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

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 18px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 159, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-text a {
    color: var(--color-primary);
}

.contact-text p {
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

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

.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2d3748;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-primary);
    color: white;
}

.footer h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--color-primary);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    gap: 1rem;
}

.footer-language {
    position: relative;
}

#footer-lang-toggle {
    background: none;
    border: none;
    color: #cbd5e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius);
}

#footer-lang-toggle:hover {
    background-color: #2d3748;
}

.footer-lang-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #2d3748;
    border-radius: var(--radius);
    padding: 0.5rem;
    display: none;
    min-width: 150px;
    box-shadow: var(--shadow-md);
}

.footer-lang-dropdown.active {
    display: flex;
    flex-direction: column;
}

.footer-lang-dropdown button {
    background: none;
    border: none;
    color: #cbd5e0;
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius);
}

.footer-lang-dropdown button:hover {
    background-color: #4a5568;
}

.footer-lang-dropdown button.active {
    font-weight: 700;
    color: var(--color-primary);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 300px;
    max-width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
}

.toast.active {
    bottom: 20px;
}

.toast-content {
    display: flex;
    align-items: flex-start;
}

#toast-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.toast-message {
    display: flex;
    flex-direction: column;
}

#toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#toast-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

#toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-lighter);
    line-height: 1;
    margin-left: 1rem;
}

.toast.success #toast-icon {
    color: #38a169;
}

.toast.error #toast-icon {
    color: #e53e3e;
}

.toast.warning #toast-icon {
    color: #d69e2e;
}

.toast.info #toast-icon {
    color: #3182ce;
}

/* Legal Pages Styling */
.legal-section {
    padding: 6rem 0;
}

.legal-content {
    background-color: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.legal-date {
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}

/* Media Queries */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    #mobile-menu-btn {
        display: none;
    }

    .contact-btn {
        display: block;
    }

    .equipment-item {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .equipment-item.reverse {
        direction: rtl;
    }

    .equipment-item.reverse .equipment-text {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
    }
    
    /* Improved hover effects for desktop */
    .service-card:hover,
    .material-item:hover,
    .project-card:hover {
        transform: translateY(-10px);
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Scroll Animations */
.fade-in,
.slide-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.fade-in {
    transition-duration: 1.2s;
}

.slide-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-right {
    transform: translateX(100px);
}

/* UNIFIED hover effect for ALL material items */
.material-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: var(--color-primary) !important;
    opacity: 1 !important;
}

/* Apply animations when .animate class is added via JavaScript */
.fade-in.animate,
.slide-up.animate,
.slide-in-left.animate,
.slide-in-right.animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Apply animations for elements that are visible on page load without JS */
.fade-in,
.slide-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {

    .fade-in:not(.animate),
    .slide-up:not(.animate),
    .slide-in-left:not(.animate),
    .slide-in-right:not(.animate) {
        animation: none !important;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--color-card-bg);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out, opacity 0.5s ease-out, transform 0.5s ease-out;
    border-top: 3px solid var(--color-primary);
    /* Подсилен background с overlay за по-добра видимост */
    backdrop-filter: blur(5px);
}

/* Стрелка за връщане към началото */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    background-color: var(--color-background-alt);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 1.2rem;
    }
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-text);
}

.cookie-text p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 15px;
        width: 100%;
    }
    
    #cookie-accept {
        flex: 1;
    }
    
    /* Mobile Optimizations */
    .hero {
        padding: 3rem 0 !important;
        min-height: 60vh;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .section {
        padding: 3rem 0 !important;
    }
    
    .equipment-content {
        flex-direction: column;
    }
    
    .equipment-item {
        flex-direction: column;
    }
    
    .equipment-image {
        width: 100% !important;
        height: auto !important;
    }
    
    .equipment-item.reverse {
        flex-direction: column;
    }
    
    .materials-list {
        flex-direction: column;
    }
    
    .material-item {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        flex-direction: column;
    }
    
    .project-image {
        width: 100% !important;
        height: 250px;
    }
}

.mobile-only-call-btn {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only-call-btn {
        display: inline-flex; /* Използвайте inline-flex, за да подравните иконата и текста правилно */
        align-items: center;
        gap: 0.5rem; /* Добавя разстояние между иконата и текста, ако е нужно */
    }
}

.map-container {
    margin-top: 1.5rem; /* Add some space above the map */
    width: 100%;       /* Ensure it takes full width of its container */
}

.map-container iframe {
    display: block; /* Remove extra space below iframe */
    width: 100%;   /* Make iframe responsive */
    max-width: 100%; /* Prevent iframe from overflowing */
}

/* Adjust height for smaller screens if needed */
@media (max-width: 768px) {
    .map-container iframe {
        height: 250px; /* Slightly smaller height on mobile */
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 200px; /* Even smaller height on very small screens */
    }
}


.more-thumbnails-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: var(--radius);
    height: 90px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}
.more-thumbnails-indicator:hover {
    background-color: var(--color-primary);
    transform: scale(1.05);
}

.more-thumbnails-indicator {
    height: 60px;
    font-size: 14px;
}
