/* ===================================
   Steel in Design - Main Stylesheet
   Generated from SCSS
   =================================== */

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

/* Image Protection - Prevent Downloads */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events for interactive images */
.gallery-image,
.ostatni-image,
.lightbox img,
button img,
a img {
    pointer-events: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #262625;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #262625;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.navbar .logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #262625;
}

.logo-in {
    color: #ffffff;
    background-color: #262625;
    padding: 2px 6px;
    margin: 0 2px;
    border-radius: 2px;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.6em;
    font-weight: 500;
    color: #BFBFBF;
    margin-left: 0.3rem;
    text-transform: lowercase;
    font-style: italic;
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar .nav-links a {
    padding: 0.5rem 1rem;
    color: #434242;
    font-weight: 500;
    position: relative;
}

.nav-partner-logo {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #e0e0e0;
}

.nav-partner-logo img {
    height: 35px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .nav-partner-logo {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #e0e0e0;
        width: 100%;
        justify-content: center;
    }
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FF6B00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-links a:hover, 
.navbar .nav-links a.active {
    color: #FF6B00;
}

.navbar .nav-links a:hover::after, 
.navbar .nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
    }
    
    .navbar .nav-links.active {
        right: 0;
    }
}

.navbar .mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    color: #262625;
    padding: 0.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar .mobile-menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 88vh;
    min-height: 616px;
    background: linear-gradient(135deg, #262625 0%, #434242 100%);
    background-image: url('assets/tahokov/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero .hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 2.5rem;
    }
}

.hero .hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FF6B00;
}

@media (max-width: 768px) {
    .hero .hero-tagline {
        font-size: 1.3rem;
    }
}

.hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero .hero-description {
        font-size: 1rem;
    }
}

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

.hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Bounce animation for page header scroll indicator */
.page-header .scroll-indicator {
    animation: bouncePageHeader 2s infinite;
}

@keyframes bouncePageHeader {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #FF6B00;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e55f00;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #FF6B00;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #262625;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #434242;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.page-header {
    background: linear-gradient(135deg, rgba(38, 38, 37, 0.8) 0%, rgba(67, 66, 66, 0.8) 100%), url('assets/zelezo/producthero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 0;
    text-align: center;
    position: relative;
    height: 88vh;
    min-height: 616px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

/* Contact Page Header Text Styling */
.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-header {
        text-align: center;
        justify-content: center;
    }
    
    .page-header-content {
        max-width: 100%;
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .page-header p {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .page-header-buttons {
        justify-content: center;
    }
    
    .page-header-buttons .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

.page-header {
    background: linear-gradient(135deg, rgba(38, 38, 37, 0.8) 0%, rgba(67, 66, 66, 0.8) 100%), url('assets/zelezo/producthero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 0;
    text-align: center;
    position: relative;
    height: 88vh;
    min-height: 616px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    max-width: 600px;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.page-header-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #FF6B00;
}

.service-card .service-icon {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #262625;
}

.service-card p {
    color: #434242;
    line-height: 1.8;
}

/* Partnership Section */
.partnership {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.partnership-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #262625;
}

.partnership-text p {
    color: #434242;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.partnership-benefits {
    margin-bottom: 2rem;
}

.partnership-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #262625;
}

.partnership-benefits li .iconify {
    color: #FF6B00;
    font-size: 1.5rem;
}

.partnership-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-logo img {
    max-width: 691px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item .iconify {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.feature-item p {
    color: #434242;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8800 100%);
    color: #ffffff;
    text-align: center;
}

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

@media (max-width: 768px) {
    .cta h2 {
        font-size: 2rem;
    }
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Products Page */
.filters-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.filters-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    color: #262625;
}

.filter-group .iconify {
    color: #FF6B00;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:hover, 
.filter-select:focus {
    border-color: #FF6B00;
    outline: none;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #BFBFBF;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: #FF6B00;
}

.products-section {
    padding: 4rem 0;
}

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

.product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
}

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

.product-card .product-image .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FF6B00;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.product-card .product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.product-card .product-category {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #434242;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card .product-category .iconify {
    color: #FF6B00;
}

.product-card .product-description {
    color: #434242;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card .product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: #434242;
}

.no-results .iconify {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Calculator Page - Lamark Style */
.calculator-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 100%), url('assets/vrata/horman.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 3rem 0 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.calculator-header h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.calculator-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.calculator-header-contact {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.calculator-header-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.calculator-header-contact .iconify {
    font-size: 1.5rem;
    color: #FF6B00;
}

.calculator-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #434242;
}

.calculator-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Step Progress Bar */
.step-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.step-progress-bar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step-progress-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-progress-item .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #999;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-progress-item .step-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-progress-item.active .step-number {
    background-color: #FF6B00;
    border-color: #FF6B00;
    color: #fff;
    transform: scale(1.1);
}

.step-progress-item.active .step-label {
    color: #FF6B00;
    font-weight: 600;
}

.step-progress-item.completed .step-number {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.step-progress-item.completed .step-label {
    color: #28a745;
}

/* Bypassed steps for servis */
.step-progress-item.bypassed .step-number {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    opacity: 0.6;
}

.step-progress-item.bypassed .step-label {
    color: #6c757d;
    opacity: 0.6;
}

.step-progress-item.bypassed::after {
    content: 'Přeskočeno';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6c757d;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-progress-item.bypassed:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .step-progress-bar {
        padding: 0;
    }
    
    .step-progress-item .step-label {
        font-size: 0.75rem;
    }
    
    .step-progress-item .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===================================
   Loading Page Styles
   =================================== */

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.loading-container {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.loading-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.loading-logo .logo-in {
    color: #FF6B00;
}

.loading-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FF6B00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FF6B00;
}

.loading-text p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.loading-progress {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #ff8533);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile responsive loading page */
@media (max-width: 768px) {
    .loading-container {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .loading-logo img {
        width: 60px;
        height: 60px;
    }
    
    .loading-logo h2 {
        font-size: 1.4rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text h3 {
        font-size: 1.3rem;
    }
    
    .loading-text p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Modern Cookies Popup Styles
   =================================== */

.cookies-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.cookies-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cookies-container {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

.cookies-header {
    display: flex;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cookies-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B00, #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.cookies-icon .iconify {
    font-size: 24px;
    color: white;
}

.cookies-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.cookies-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookies-close:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.cookies-close .iconify {
    font-size: 18px;
    color: #666;
}

.cookies-content {
    padding: 1.5rem 2rem;
}

.cookies-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.cookies-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-type {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.cookie-type:hover {
    border-color: #FF6B00;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

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

.cookie-type-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-type-icon .iconify {
    font-size: 20px;
    color: #FF6B00;
}

.cookie-type-info {
    flex: 1;
}

.cookie-type-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.cookie-type-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    display: block;
    width: 48px;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-switch {
    background: #FF6B00;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-switch::after {
    transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-switch {
    background: #FF6B00;
    opacity: 0.7;
    cursor: not-allowed;
}

.cookies-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.cookies-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cookies-links a {
    color: #FF6B00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookies-links a:hover {
    color: #e55a00;
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookies-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.cookies-buttons .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

.cookies-buttons .btn-secondary:hover {
    background: #e9ecef;
    border-color: #d0d7de;
}

.cookies-buttons .btn-primary {
    background: #FF6B00;
    color: white;
}

.cookies-buttons .btn-primary:hover {
    background: #e55a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive cookies popup */
@media (max-width: 768px) {
    .cookies-container {
        width: 95%;
        margin: 1rem;
    }
    
    .cookies-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .cookies-content {
        padding: 1rem 1.5rem;
    }
    
    .cookies-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .cookies-buttons {
        flex-direction: column;
    }
    
    .cookies-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookies-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-type-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .cookie-type-info {
        min-width: 200px;
    }
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.calculator-wrapper.centered {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrapper.centered {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
}

.calculator-form {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInRight 0.5s ease;
}

/* Step Header */
.step-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.step-number-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8800 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.step-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.step-title p {
    font-size: 1.1rem;
    color: #434242;
    margin: 0;
}

@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .step-title h2 {
        font-size: 1.5rem;
    }
}

.form-step h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #262625;
}

.form-step h2 .iconify {
    color: #FF6B00;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.project-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.project-type-card input[type="radio"] {
    display: none;
}

.project-type-card input[type="radio"]:checked + .card-content {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8800 100%);
    color: #ffffff;
    border-color: #FF6B00;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    transform: translateY(-5px);
}

.project-type-card input[type="radio"]:checked + .card-content::before {
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.3);
}

.project-type-card input[type="radio"]:checked + .card-content .iconify {
    color: #ffffff;
}

.project-type-card input[type="radio"]:checked + .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.project-type-card .card-content {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.project-type-card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00 0%, #ff8800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-type-card .card-content:hover {
    border-color: #FF6B00;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.project-type-card .card-content:hover::before {
    transform: scaleX(1);
}

.project-type-card .card-content .iconify {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.project-type-card .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-type-card .card-content p {
    font-size: 0.9rem;
    color: #434242;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #262625;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #434242;
    font-size: 0.85rem;
}

.checkbox-group {
    display: grid;
    gap: 1rem;
}

.checkbox-card {
    display: block;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    border-color: #FF6B00;
    border-width: 2px;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content .iconify {
    color: #FF6B00;
    transform: scale(1.1);
}

.checkbox-card .checkbox-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.checkbox-card .checkbox-content:hover {
    border-color: #FF6B00;
    background-color: #fff8f5;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checkbox-card .checkbox-content .iconify {
    font-size: 2rem;
    color: #434242;
    transition: color 0.3s ease;
}

.checkbox-card .checkbox-content h4 {
    margin-bottom: 3px;
    color: #262625;
}

.checkbox-card .checkbox-content p {
    font-size: 0.9rem;
    color: #434242;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.form-navigation .btn {
    min-width: 150px;
    font-size: 1.05rem;
    padding: 14px 30px;
}

@media (max-width: 576px) {
    .form-navigation {
        flex-direction: column-reverse;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
}

.calculator-results {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .calculator-results {
        position: static;
        max-height: none;
        padding: 2rem;
    }
    
    .calculator-results .results-content {
        padding: 2rem;
    }
}

.results-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.results-header {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.results-header h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #262625;
    margin: 0;
}

.results-header h2 .iconify {
    color: #FF6B00;
}

.calculator-results h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #262625;
}

.calculator-results h2 .iconify {
    color: #FF6B00;
}

.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.progress-step.active span {
    background-color: #FF6B00;
    color: #ffffff;
}

.progress-step.active small {
    color: #FF6B00;
    font-weight: 600;
}

.progress-step.completed::after {
    background-color: #FF6B00;
}

.progress-step.completed span {
    background-color: #FF6B00;
    color: #ffffff;
}

.progress-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #434242;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #434242;
}

.estimate-details .placeholder-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #434242;
}

.estimate-details .placeholder-text .iconify {
    font-size: 1.5rem;
}

.estimate-summary-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.estimate-summary-card .summary-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.estimate-summary-card h3 {
    font-size: 1.5rem;
    color: #262625;
    margin-bottom: 1rem;
}

.estimate-summary-card > p {
    color: #434242;
    margin-bottom: 2rem;
    line-height: 1.6;
}


.project-summary {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.project-summary h4 {
    font-size: 1.2rem;
    color: #FF6B00;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.summary-item {
    display: block;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #FF6B00;
    min-height: auto;
    transition: all 0.2s ease;
    text-align: left;
}

.summary-item:hover {
    background-color: #fff5f0;
    transform: translateX(2px);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .iconify {
    font-size: 1.8rem;
    color: #FF6B00;
    margin-bottom: 0.5rem;
    display: block;
}

.summary-item span:last-child {
    color: #262625;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
    width: 100%;
    min-width: 0;
    margin-top: 0.3rem;
    word-break: break-word;
}

.total-estimate .estimate-disclaimer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #e3f2fd;
    border-left: 3px solid #2196F3;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.total-estimate .estimate-disclaimer .iconify {
    color: #2196F3;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.total-estimate .estimate-disclaimer p {
    font-size: 0.9rem;
    color: #262625;
    line-height: 1.6;
}

.info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-card .iconify {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.info-card p {
    color: #434242;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.contact-form-container > p {
    color: #434242;
    margin-bottom: 2rem;
}

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .form-group label .iconify {
    color: #FF6B00;
}

.checkbox-group-inline .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group-inline .checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.form-message .iconify {
    font-size: 1.5rem;
}

.form-message.success-message {
    background-color: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.form-message.success-message .iconify {
    color: #28a745;
}

.form-message.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

.form-message.error-message .iconify {
    color: #dc3545;
}

.contact-info-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #262625;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-info-card .info-icon .iconify {
    font-size: 2rem;
    color: #FF6B00;
}

.contact-info-card .info-content {
    flex: 1;
}

.contact-info-card .info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #262625;
}

.contact-info-card .info-content p {
    color: #434242;
    line-height: 1.6;
}

.contact-info-card .info-content p a {
    color: #FF6B00;
}

.contact-info-card .info-content p a:hover {
    text-decoration: underline;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #262625;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FF6B00;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background-color: #e55f00;
    transform: translateY(-3px);
}

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    background-color: #f8f9fa;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #434242;
}

.map-placeholder .iconify {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    font-size: 0.9rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #FF6B00;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #262625;
}

.faq-item h3 .iconify {
    color: #FF6B00;
    flex-shrink: 0;
}

.faq-item p {
    color: #434242;
    line-height: 1.7;
}

/* Modern Simple Footer Design */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FF6B00;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-section ul li a:hover {
    color: #FF6B00;
}

.footer-section ul li a .iconify {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover .iconify {
    color: #FF6B00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .footer-section ul {
        margin-top: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .footer-section {
        padding-bottom: 1.25rem;
    }
    
    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-section h3::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.625rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.625rem 0;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
}

.social-links a:hover,
.social-links a:active {
    background: #FF6B00;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-links {
        gap: 0.875rem;
        margin-top: 1.25rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.5rem;
    transform: translateX(3px);
}

.contact-info li:active {
    background: rgba(255, 255, 255, 0.08);
}

.contact-info li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    width: 100%;
    -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
}

.contact-info li a:hover {
    color: #FF6B00;
}

.contact-info li .iconify {
    font-size: 1.2rem;
    color: #cccccc;
    min-width: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info li:hover .iconify {
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-info li {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        min-height: 44px;
        padding: 0.5rem 0;
    }
    
    .contact-info li:hover {
        padding-left: 0.75rem;
        transform: translateX(5px);
    }
    
    .contact-info li .iconify {
        font-size: 1.2rem;
        margin-right: 1rem;
        width: 24px;
    }
}

@media (max-width: 480px) {
    .contact-info li {
        margin-bottom: 0.875rem;
        font-size: 0.9rem;
        padding: 0.625rem 0;
    }
    
    .contact-info li:hover {
        padding-left: 0.625rem;
        transform: translateX(4px);
    }
    
    .contact-info li .iconify {
        font-size: 1.15rem;
        margin-right: 0.875rem;
        width: 22px;
    }
}

.social-links a .iconify {
    font-size: 1.2rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services-section {
        justify-content: center;
    }


@media (max-width: 480px) {
    .footer-section:nth-child(3) {
        padding: 0;
    }
    
    .social-links a .iconify {
        font-size: 1.2rem;
    }
    
    /* Improve touch targets for all footer links */
    .footer-section ul li a,
    .contact-info li a {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.2);
    }
    
    /* Better spacing for footer sections on mobile */
    .footer-section:not(:last-child) {
        margin-bottom: 0;
    }
}

/* Hörmann Promotion Popup */
.hormann-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

.popup-header {
    background: linear-gradient(135deg, #d4af37, #ff6b00);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 2rem;
}

.popup-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-text h4 {
    color: #262625;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.popup-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.popup-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-footer .btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-footer .btn-primary {
    background: linear-gradient(135deg, #d4af37, #ff6b00);
    color: white;
    border: none;
}

.popup-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.popup-footer .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.popup-footer .btn-secondary:hover {
    background: #e9ecef;
    color: #262625;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .popup-footer .btn {
        max-width: none;
    }
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Professional Modal Styling */
.professional-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.professional-modal .modal-content {
    background: white;
    border-radius: 15px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.professional-modal .modal-icon {
    text-align: center;
    padding: 2rem 2rem 0 2rem;
}

.professional-modal .modal-icon .iconify {
    font-size: 4rem;
    color: #FF6B00;
}

.professional-modal .modal-header {
    text-align: center;
    padding: 1rem 2rem 0 2rem;
}

.professional-modal .modal-header h3 {
    font-size: 1.5rem;
    color: #262625;
    font-weight: 600;
}

.professional-modal .modal-body {
    padding: 1.5rem 2rem;
    text-align: center;
}

.professional-modal .modal-body p {
    font-size: 1rem;
    color: #434242;
    line-height: 1.5;
}

.professional-modal .modal-footer {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

.professional-modal .modal-footer .btn {
    margin: 0 auto;
    display: block;
    min-width: 120px;
}

/* Success Message in Step Progress */
.success-message-step {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.success-message-step .success-icon {
    margin-bottom: 1rem;
}

.success-message-step .success-icon .iconify {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.success-message-step .success-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.success-message-step .success-text p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal responsive */
@media (max-width: 480px) {
    .professional-modal .modal-content {
        min-width: 320px;
        margin: 1rem;
    }
    
    .professional-modal .modal-icon,
    .professional-modal .modal-header,
    .professional-modal .modal-body,
    .professional-modal .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .success-message-step {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .success-message-step .success-text h3 {
        font-size: 1.4rem;
    }
    
    .success-message-step .success-icon .iconify {
        font-size: 2.5rem;
    }
    
    .project-summary {
        padding: 1.5rem;
    }
    
    .summary-item {
        padding: 0.75rem;
    }
    
    .summary-item .iconify {
        margin-bottom: 0.5rem;
    }
    
    .summary-item span:last-child {
        font-size: 0.9rem;
        margin-top: 0.2rem;
    }
}

/* LAMARK-style Product Sections */
.product-category-section {
    margin-bottom: 80px;
    padding: 60px 0;
    border-bottom: 1px solid #e5e5e5;
}

.product-category-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262625;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-header h2 .iconify {
    font-size: 2.2rem;
    color: #d4af37;
}

.category-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.category-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    z-index: 10;
}

.category-details h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #262625;
    margin-bottom: 20px;
}

.category-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.category-details .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
}

/* Beautiful Image Gallery for Brány a branky */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image:hover::before {
    opacity: 1;
}

.gallery-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Hidden images initially */
.gallery-image.hidden {
    display: none;
}

/* Expanded gallery state */
.image-gallery.expanded {
    max-height: none;
    overflow: visible;
}

/* Gallery Toggle Button */
.gallery-toggle {
    text-align: center;
    margin-top: 20px;
}

.gallery-toggle-btn {
    background: linear-gradient(135deg, #FF6B00, #D4AF37);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    margin-bottom: 20px;
}

.gallery-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.gallery-toggle-btn:active {
    transform: translateY(0);
}

.gallery-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.3);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    animation: slideIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #FF6B00;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 107, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    to { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Responsive gallery */
@media (max-width: 1024px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
        max-height: 300px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .gallery-toggle-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .lightbox-content {
        width: 95%;
        padding: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        max-height: 250px;
    }
    
    .gallery-image {
        height: 120px;
    }
    
    .gallery-toggle-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .category-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .category-image img {
        height: 300px;
    }
    
    .category-details h3 {
        font-size: 1.5rem;
    }
    
    .product-category-section {
        margin-bottom: 60px;
        padding: 40px 0;
    }
}

/* Advanced Mobile Responsive Features */
@media (max-width: 768px) {
    /* Touch-friendly interactions */
    .btn, .gallery-toggle-btn, .service-card, .product-category-section {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improved text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Optimized hero sections */
    .hero, .page-header {
        height: 70vh;
        min-height: 500px;
    }
    
    /* Mobile-optimized buttons */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Better form inputs */
    input, textarea, select {
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Improved gallery */
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    /* Better service cards */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Optimized product sections */
    .product-category-section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .category-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Contact form optimization */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* FAQ optimization */
    .faq-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Calculator optimization */
    .calculator-step {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .hero h1, .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p, .page-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .category-header h2 {
        font-size: 1.5rem;
    }
    
    .category-details h3 {
        font-size: 1.2rem;
    }
    
    .gallery-image {
        height: 120px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-info-container {
        padding: 1rem;
    }
}

/* Touch gesture optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .product-category-section:hover,
    .gallery-image:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Increase touch targets */
    .btn, .gallery-toggle-btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Better touch feedback */
    .btn:active, .gallery-toggle-btn:active {
        transform: scale(0.98);
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-image, .category-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero, .page-header {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-content, .page-header-content {
        padding: 1rem 0;
    }
}

/* ==========================================================================
   AEO / GEO & Modern UI Enhancement Components
   ========================================================================== */

/* Common Section Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.12);
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 107, 0, 0.25);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

/* Trust Badges Grid */
.trust-badges-section {
    padding: 3.5rem 0;
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-badge-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #FF6B00;
}

.trust-badge-icon {
    font-size: 2.2rem;
    color: #FF6B00;
    flex-shrink: 0;
    line-height: 1;
}

.trust-badge-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.3rem;
}

.trust-badge-text p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* AEO Comparison Table & Tech Specs */
.aeo-comparison-section,
.tech-specs-section {
    padding: 4.5rem 0;
    background: #f8fafc;
}

.table-responsive-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.aeo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 680px;
}

.aeo-comparison-table th {
    background: #1e293b;
    color: #ffffff;
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.aeo-comparison-table td {
    padding: 1.1rem 1.25rem;
    font-size: 0.93rem;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.5;
    vertical-align: middle;
}

.aeo-comparison-table tr:last-child td {
    border-bottom: none;
}

.aeo-comparison-table tr:hover td {
    background: #f1f5f9;
}

.table-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
}

.tag-best {
    background: #dcfce7;
    color: #15803d;
}

.tag-std {
    background: #e2e8f0;
    color: #475569;
}

/* Accordion FAQ Component */
.accordion-faq {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item:hover,
.faq-accordion-item.active {
    border-color: #FF6B00;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.08);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-q-icon {
    color: #FF6B00;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.faq-accordion-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.faq-arrow {
    color: #94a3b8;
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #FF6B00;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    background: #fafbfc;
    border-top: 1px solid transparent;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 300px;
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.faq-accordion-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* Regional Coverage Grid */
.coverage-section {
    padding: 4.5rem 0;
    background: #ffffff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.coverage-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B00;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.coverage-icon {
    font-size: 2.8rem;
    color: #FF6B00;
    margin-bottom: 1rem;
    line-height: 1;
}

.coverage-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.coverage-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.coverage-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: #FF6B00;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Mobile Quick Action Bar */
.mobile-quick-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}

.mobile-quick-bar .quick-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.mobile-quick-bar .quick-btn .iconify {
    font-size: 1.35rem;
}

.mobile-quick-bar .quick-call {
    color: #ffffff;
    background: #0284c7;
}

.mobile-quick-bar .quick-whatsapp {
    color: #ffffff;
    background: #22c55e;
}

.mobile-quick-bar .quick-quote {
    color: #ffffff;
    background: #FF6B00;
}

/* Responsive Media Queries for SEO/AEO Components */
@media (max-width: 992px) {
    .trust-badges-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-quick-bar {
        display: flex;
        gap: 8px;
    }
    
    body {
        padding-bottom: 60px; /* Offset for floating bar */
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .trust-badges-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .aeo-comparison-table th,
    .aeo-comparison-table td {
        padding: 0.85rem;
    }
}


