/* ===================================
   STALOWY BECHTA - Główny plik CSS
   Wersja: 2.0
   Data: 2025
   Autor: Najlepszy twórca stron w Polsce
   =================================== */

/* === SPIS TREŚCI ===
   1. Reset i zmienne
   2. Typografia
   3. Layout podstawowy
   4. Nawigacja
   5. Nagłówek strony
   6. Quick Contact Buttons
   7. Loading Screen
   8. Hero Section (strona główna)
   9. Features Section
   10. Offer Section
   11. Portfolio Section
   12. CTA Section
   13. Service Sections (oferta)
   14. Stats Section (realizacje)
   15. Filter Section
   16. Gallery Section
   17. Lightbox
   18. Contact Section (kontakt)
   19. Forms
   20. Map Section
   21. Stopka
   22. Komponenty wspólne
   23. Animacje
   24. Utilities
   25. Responsywność
   =================================== */

/* ===================================
   1. RESET I ZMIENNE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kolory główne */
    --primary-dark: #1a1a1a;
    --primary-steel: #2c3e50;
    --accent-red: #e74c3c;
    
    /* Kolory pomocnicze */
    --light-gray: #ecf0f1;
    --text-light: #bdc3c7;
    --white: #ffffff;
    --success-green: #27ae60;
    --info-blue: #3498db;
    --warning-orange: #f39c12;
    --star-gold: #f1c40f;
    --trend-purple: #9b59b6;
    --trend-blue: #3498db;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-steel) 100%);
    --gradient-red: linear-gradient(135deg, var(--accent-red), var(--primary-steel));
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.2);
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Rozmiary czcionek */
    --font-size-h1: clamp(2.5rem, 5vw, 4rem);
    --font-size-h2: clamp(2rem, 4vw, 3rem);
    --font-size-h3: clamp(1.5rem, 3vw, 2rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;
    
    /* Breakpoints */
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --breakpoint-desktop: 1400px;
}

/* ===================================
   2. TYPOGRAFIA
   =================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 { 
    font-size: var(--font-size-h1);
    letter-spacing: -2px;
}

h2 { 
    font-size: var(--font-size-h2);
    letter-spacing: -1px;
}

h3 { 
    font-size: var(--font-size-h3);
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1rem;
    color: var(--primary-steel);
}

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

strong {
    font-weight: 700;
}

/* ===================================
   3. LAYOUT PODSTAWOWY
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}

/* ===================================
   4. NAWIGACJA
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.logo:hover {
    transform: translateX(5px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

.logo-icon::before,
.logo-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.logo-icon::before { transform: rotate(-45deg); }
.logo-icon::after { transform: rotate(45deg); }

.logo:hover .logo-icon::before { transform: rotate(-50deg); }
.logo:hover .logo-icon::after { transform: rotate(50deg); }

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-red);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    background: #c0392b;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===================================
   5. NAGŁÓWEK STRONY
   =================================== */
.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="50" height="50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.2rem;
}

/* ===================================
   6. QUICK CONTACT BUTTONS
   =================================== */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.quick-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.quick-btn:hover::before {
    width: 120px;
    height: 120px;
}

.quick-btn:hover {
    transform: scale(1.1);
}

.quick-btn.phone {
    background: var(--accent-red);
    animation: pulse 2s infinite;
}

.quick-btn.phone:hover {
    background: #c0392b;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    animation: none;
}

.quick-btn.whatsapp {
    background: #25D366;
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.quick-btn.messenger {
    background: #0084FF;
}

.quick-btn.messenger:hover {
    background: #0067CC;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
}

/* Animacja pojawiania się */
.quick-contact .quick-btn {
    animation: slideInRight 0.5s ease-out backwards;
}

.quick-contact .quick-btn:nth-child(1) { animation-delay: 0.1s; }
.quick-contact .quick-btn:nth-child(2) { animation-delay: 0.2s; }
.quick-contact .quick-btn:nth-child(3) { animation-delay: 0.3s; }

/* ===================================
   7. LOADING SCREEN
   =================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-red);
    animation: spin 1s ease-in-out infinite;
}

/* ===================================
   8. HERO SECTION (strona główna)
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 62, 80, 0.8)), 
                url('g1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="50" height="50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.4);
}

/* ===================================
   9. FEATURES SECTION
   =================================== */
.features {
    padding: 5rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--light-gray);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-red);
    transform: translateX(-100%);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--primary-steel);
    line-height: 1.8;
}

/* ===================================
   10. OFFER SECTION
   =================================== */
.offer {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--white);
}

.offer .section-title {
    color: var(--white);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.offer-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
}

.offer-card:hover .offer-overlay {
    background: linear-gradient(to bottom, rgba(231, 76, 60, 0.8), rgba(26, 26, 26, 0.9));
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.offer-overlay p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.offer-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.offer-link:hover {
    gap: 1rem;
    color: var(--white);
}

/* ===================================
   11. PORTFOLIO SECTION
   =================================== */
.portfolio {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    background: var(--primary-dark);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-xl);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    color: var(--white);
    padding: 1.5rem;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    bottom: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.portfolio-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   12. CTA SECTION
   =================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-red);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-title {
    margin-bottom: 2rem;
    color: var(--white);
}

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--accent-red);
    border-radius: 5px;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-3px);
    background: var(--white);
    color: var(--primary-dark);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ===================================
   13. SERVICE SECTIONS (oferta)
   =================================== */
.service-section {
    padding: 80px 0;
    position: relative;
}

.service-section:nth-child(even) {
    background: var(--light-gray);
}

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

.service-text h2 {
    margin-bottom: 2rem;
    position: relative;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
}

.service-features {
    margin: 2rem 0;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Calculator Widget */
.calculator-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.calculator-form {
    display: grid;
    gap: 1rem;
}

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

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-steel);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.calc-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 5px;
    text-align: center;
}

.calc-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-red);
}

/* Materials Section */
.materials-section {
    padding: 60px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.materials-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.materials-section > .container > p {
    color: var(--white);
    text-align: center;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.material-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.material-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.material-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.material-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.material-card p {
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   14. STATS SECTION (realizacje)
   =================================== */
.stats-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--white);
}

/* ===================================
   15. FILTER SECTION
   =================================== */
.filter-section {
    padding: 40px 0;
    background: var(--light-gray);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-steel);
}

.filter-btn:hover {
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.25rem;
    border-radius: 5px;
}

.view-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-steel);
    border-radius: 3px;
}

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

/* ===================================
   16. GALLERY SECTION
   =================================== */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 600px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    transition: var(--transition);
}

.gallery-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

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

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-grid.list-view .project-image {
    height: 200px;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 26, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-red);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-location {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

/* List View Specific */
.gallery-grid.list-view .project-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    overflow: visible;
}

.gallery-grid.list-view .project-overlay {
    position: static;
    background: none;
    opacity: 1;
    padding: 2rem;
}

.gallery-grid.list-view .project-info {
    color: var(--primary-dark);
    transform: none;
}

.gallery-grid.list-view .project-title {
    color: var(--primary-dark);
}

.gallery-grid.list-view .project-location {
    color: var(--primary-steel);
}

.gallery-grid.list-view .project-category {
    background: var(--light-gray);
    color: var(--primary-steel);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.no-results.active {
    display: block;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    color: var(--primary-steel);
    margin-bottom: 1rem;
}

/* Load More */
.load-more {
    text-align: center;
    padding: 40px 0;
}

.load-more-btn {
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   17. LIGHTBOX
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease-out;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.lightbox-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   18. CONTACT SECTION (kontakt)
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    margin-bottom: 2rem;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

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

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-red);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.info-item i {
    color: var(--accent-red);
    font-size: 1.2rem;
    width: 25px;
}

.info-item a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-red);
}

/* Hours Section */
.hours-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
}

.hours-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.hour-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.hour-item.active {
    background: var(--accent-red);
}

.hour-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hour-item p {
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   19. FORMS
   =================================== */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-steel);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border: 2px dashed var(--primary-steel);
    border-radius: 5px;
    transition: var(--transition);
}

.file-upload:hover .file-upload-label {
    background: var(--primary-steel);
    color: var(--white);
}

.file-upload.highlight .file-upload-label {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.submit-btn {
    background: var(--accent-red);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
    border-radius: 5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    background: #c0392b;
}

/* Form validation styles */
.field-error {
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error,
textarea.error,
select.error {
    border-color: var(--accent-red) !important;
}

.success-message {
    background: var(--success-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease-out;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-message i {
    font-size: 1.5rem;
}

/* ===================================
   20. MAP SECTION
   =================================== */
.map-section {
    padding: 0;
    height: 500px;
    position: relative;
    background: var(--light-gray);
}

.map-container {
    width: 100%;
    height: 100%;
    filter: grayscale(50%);
    transition: var(--transition);
}

.map-container:hover {
    filter: grayscale(0%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    max-width: 350px;
}

.map-overlay h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.map-overlay p {
    margin-bottom: 0.5rem;
}

/* ===================================
   21. STOPKA
   =================================== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--accent-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-red);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-item i {
    color: var(--accent-red);
    width: 20px;
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--accent-red);
}

.footer-contact-item span {
    color: var(--text-light);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--accent-red);
}

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

/* ===================================
   22. KOMPONENTY WSPÓLNE
   =================================== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-red);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

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

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

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

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

/* Grid layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-secondary {
    background: var(--primary-steel);
}

.badge-success {
    background: var(--success-green);
}

/* ===================================
   23. ANIMACJE
   =================================== */
@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

/* ===================================
   24. UTILITIES
   =================================== */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text colors */
.text-primary { color: var(--primary-dark); }
.text-steel { color: var(--primary-steel); }
.text-accent { color: var(--accent-red); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }

/* Background colors */
.bg-primary { background-color: var(--primary-dark); }
.bg-steel { background-color: var(--primary-steel); }
.bg-accent { background-color: var(--accent-red); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }

/* Margins */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.my-1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-2 { margin-top: 1rem; margin-bottom: 1rem; }
.my-3 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-4 { margin-top: 2rem; margin-bottom: 2rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* Paddings */
.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

/* Visibility */
.hidden { display: none; }
.visible { display: block; }

/* Borders */
.border { border: 1px solid var(--light-gray); }
.border-accent { border-color: var(--accent-red); }
.rounded { border-radius: 5px; }
.rounded-lg { border-radius: 10px; }
.rounded-full { border-radius: 50%; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   25. RESPONSYWNOŚĆ
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    /* Service sections */
    .service-content {
        gap: 3rem;
    }
    
    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Map overlay */
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin: 2rem;
    }
    
    /* Lightbox navigation */
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Mobile menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Service sections */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Form row */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact form wrapper */
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    /* Quick contact */
    .quick-contact {
        bottom: 20px;
        right: 20px;
        gap: 0.75rem;
    }
    
    .quick-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    /* Grid mobile */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Filter section */
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Lightbox */
    .lightbox-nav {
        display: none;
    }
    
    .lightbox-info {
        position: static;
        margin-top: 1rem;
    }
    
    /* Section padding mobile */
    .section {
        padding: 40px 0;
    }
    
    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Page header */
    .page-header {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    /* Map section */
    .map-section {
        height: 400px;
    }
    
    .map-overlay {
        position: static;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Offer grid */
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quick contact */
    .quick-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .quick-btn {
        width: 45px;
        height: 45px;
    }
}

/* Print styles */
@media print {
    /* Hide navigation and buttons */
    nav,
    .quick-contact,
    .mobile-menu-toggle,
    .btn,
    .nav-cta {
        display: none !important;
    }
    
    /* Adjust colors for print */
    body {
        color: #000;
        background: #fff;
    }
    
    /* Remove shadows */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}