/* CSS variables for bold dark-orange aesthetic */
:root {
    --bg-dark: #090a0f;
    --bg-main: #0c0d13;
    --bg-surface: #141620;
    --bg-surface-low: #0f1016;
    --bg-surface-high: #1c1f2e;
    
    --primary: #ff6d00;
    --primary-hover: #ff8533;
    --primary-glow: rgba(255, 109, 0, 0.4);
    
    --accent: #ff5500;
    --accent-hover: #ff7733;
    --accent-glow: rgba(255, 85, 0, 0.4);
    
    --text-light: #ffffff;
    --text-gray: #a2a7b7;
    --text-muted: #676d7f;
    
    --border: #222533;
    --border-focus: #ff6d00;
    
    --success: #00e676;
    --error: #ff3333;
    
    --shadow-main: 0 10px 40px rgba(0, 0, 0, 0.6);
    --transition-speed: 0.3s;
    
    --font-headline: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

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

.w-full {
    width: 100%;
}

.hidden {
    display: none !important;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Animations Disabled */
.urgent-pulse {
    /* animation disabled */
}

/* Reveal effects disabled */
.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* Notification Bar */
.notification-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.notif-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
}

.notif-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
}

.notif-right span {
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(12, 13, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-icon {
    background: var(--primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.logo-icon span {
    font-size: 1.8rem;
}

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

.logo-title {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
    text-transform: uppercase;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.phone-sub {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.phone-number {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    transition: color var(--transition-speed);
}

.phone-block:hover .phone-number {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.menu-toggle span {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge-urgent {
    background: rgba(255, 109, 0, 0.15);
    border: 1px solid rgba(255, 109, 0, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.05rem;
}

.icon-accent {
    color: var(--primary);
}

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

.hero-promo-card {
    background: var(--bg-surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow-main);
}

.promo-card-title {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
}

.promo-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Forms Styling */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-input, .form-select {
    width: 100%;
    background: var(--bg-surface-low);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all var(--transition-speed);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 10px rgba(255, 109, 0, 0.2);
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 18px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-surface-low);
    border-y: 1px solid var(--border);
    padding: 40px 0;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-family: var(--font-headline);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Services Cards Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

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

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-price-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--bg-dark);
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.service-features li span {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Calculator Block */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.calculator-inputs {
    padding: 40px;
}

.calc-group {
    margin-bottom: 30px;
}

.calc-label {
    display: block;
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.calc-option {
    background: var(--bg-surface-low);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.calc-option span.material-symbols-outlined {
    font-size: 2.2rem;
    color: var(--text-gray);
}

.calc-option .option-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.calc-option .option-price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.calc-option:hover {
    border-color: var(--primary-hover);
}

.calc-option.active {
    background: rgba(255, 109, 0, 0.05);
    border-color: var(--primary);
}

.calc-option.active span.material-symbols-outlined {
    color: var(--primary);
}

.slider-container {
    padding: 10px 0;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border);
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

.slider-current-val {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.calculator-results {
    background: var(--bg-surface-high);
    border-left: 1px solid var(--border);
    padding: 40px;
    display: flex;
    align-items: center;
}

.result-box {
    width: 100%;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 15px 0;
}

.price-val {
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.price-currency {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.price-details {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.price-details p {
    margin-bottom: 5px;
}

.result-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.result-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.result-bullet span.material-symbols-outlined {
    font-size: 1.25rem;
}

/* Why Choose Us Cards */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: all var(--transition-speed);
}

.adv-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-main);
}

.adv-icon-wrapper {
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.adv-icon-wrapper span {
    font-size: 2.2rem;
}

.adv-card-title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.adv-card-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 19, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.gallery-overlay span.material-symbols-outlined {
    font-size: 3rem;
    color: var(--primary);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-text {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span.material-symbols-outlined {
    transform: translateY(0);
}

/* Contacts Layout */
.contacts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.contacts-description {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 2.2rem;
    color: var(--primary);
}

.contact-card-meta {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.contact-card-value {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
}

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

.contact-form-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.contact-form-title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contacts-map-wrapper {
    height: 100%;
    min-height: 450px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6) contrast(1.2);
}

.map-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(20, 22, 32, 0.95);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.pulse-green {
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--success);
}

.map-badge-meta {
    display: flex;
    flex-direction: column;
}

.map-badge-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.map-badge-desc {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Footer Section */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 0 0;
}

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

.footer-desc {
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer-title {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-speed);
}

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

.footer-phone {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-email a {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 25px 0;
    font-size: 0.8rem;
}

.footer-privacy a {
    text-decoration: none;
}

.footer-privacy a:hover {
    color: var(--text-light);
}

/* Floating Call Button on mobile */
.fab-mobile {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-dark);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.4);
    z-index: 99;
    text-decoration: none;
}

.fab-mobile span {
    font-size: 2rem;
}

/* Popup Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-wrapper {
    background: var(--bg-surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-main);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color var(--transition-speed);
}

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

.modal-close span {
    font-size: 1.8rem;
}

.modal-title {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-main);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.lightbox-close span {
    font-size: 2.5rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 2px solid var(--primary);
    padding: 20px;
    z-index: 120;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

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

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

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Mobile responsive drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 160;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 155;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

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

.drawer-title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.drawer-close span {
    font-size: 1.8rem;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    transition: color var(--transition-speed);
}

.drawer-link:hover {
    color: var(--primary);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.drawer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headline);
    font-size: 1.4rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
}

/* Response Breakpoints */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-map-wrapper {
        min-height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .fab-mobile {
        display: flex;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid, .gallery-grid, .stats-grid, .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .calc-options {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}