:root {
    /* Prabangi ir rimta paletė */
    --color-primary: #171717;       
    --color-primary-light: #1c1c1e; 
    --color-accent: #588157;        
    --color-accent-hover: #588157;  
    --color-eco: #2e4f24;           
    --color-bg-main: #f4f5f6;       
    --color-bg-light: #ffffff;      
    --color-border: #e2e4e7;        
    --color-text-heading: #111111;  
    --color-text-body: #6e6e6e;      
    --color-text-muted: #78828c;    

    /* Atskiri stiliai 24/7 skubiai pagalbai (Emergency) */
    --emergency-bg-color: #344e41;
    --emergency-text-color: #ffffff;
    --emergency-accent: #ffdddd;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.06);
    --radius-md: 6px;
    --radius-lg: 12px;
}

/* Global Setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--color-bg-main); 
    color: var(--color-text-body); 
    line-height: 1.65; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { 
    font-family: 'Lora', serif;
    color: var(--color-text-heading); 
    font-weight: 600; 
    line-height: 1.25; 
}
.sub-heading { 
    display: inline-block; text-transform: uppercase; letter-spacing: 2px; 
    color: var(--color-accent); font-size: 0.8rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 16px; 
}
.text-accent { color: var(--color-accent); font-weight: 700; }
.text-link { color: var(--color-accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.text-link:hover { border-color: var(--color-accent); }

/* Navbar */
.navbar { background: var(--color-primary); position: sticky; top: 0; z-index: 1000; padding: 14px 0; border-bottom: 1px solid #222; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    height: 42px; 
    object-fit: contain; 
    filter: brightness(0) invert(1); 
    transform: scale(1.2) translateY(5px); 
    transition: transform 0.3s ease; 
}
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: #b5b5b5; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active-page { color: #FFFFFF; }
.eco-badge { border: 1px solid rgba(255,255,255,0.15); padding: 6px 12px; border-radius: 4px; }

/* Top Bar */
.top-bar { background-color: var(--color-primary-light); padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid #2a2a2c; }
.top-bar-container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-bar a { color: #a5abb0; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.top-bar a:hover { color: white; }
.top-bar i { color: var(--color-accent); }

/* Izoliuotas Emergency viršutinis pranešimas */
.emergency-announcement { background-color: var(--emergency-bg-color); color: var(--emergency-text-color); padding: 12px 0; text-align: center; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.emergency-container { display: flex; align-items: center; justify-content: center; gap: 12px; }
.emergency-announcement a { color: var(--emergency-text-color); font-weight: 700; text-decoration: underline; }
.emergency-pulse { width: 8px; height: 8px; background: #FFFFFF; border-radius: 50%; position: relative; }
.emergency-pulse::after { content: ''; position: absolute; width: 100%; height: 100%; background: #FFFFFF; border-radius: 50%; animation: pulse-white 2s infinite; top: 0; left: 0; }
@keyframes pulse-white { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(3.5); opacity: 0; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: 1px solid transparent; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.btn-primary { background-color: var(--color-accent); color: white; }
.btn-primary:hover { background-color: var(--color-accent-hover); }
.nav-quote-btn { padding: 8px 20px !important; font-size: 0.85rem !important; }

.btn-secondary.white-btn { border: 1px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-secondary.white-btn:hover { background-color: white; color: var(--color-primary); }

/* --- HERO SECTION SU PILNO EKRANO FONINIU SLIDERIU --- */
.hero { 
    position: relative; 
    min-height: 600px;
    height: 75vh;
    display: flex; 
    align-items: center; 
    overflow: hidden; 
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(75deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.4) 100%);
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-content { max-width: 620px; }
.hero-title { font-size: 4rem; color: white; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.15rem; color: #e2e4e7; margin-bottom: 30px; line-height: 1.6; font-family: 'Inter', sans-serif; font-weight: 300; }
.price-content { border-left: 3px solid var(--color-accent); padding-left: 20px; }
.price-label { font-size: 0.8rem; color: #b5b5b5; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.price-amount { font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 700; color: white; line-height: 1; }
.price-vat { font-size: 0.9rem; color: #b5b5b5; margin-left: 8px; font-family: 'Inter', sans-serif; }
.hero-buttons { display: flex; gap: 16px; margin-top: 30px; }

.slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%); 
    background-color: rgba(255, 255, 255, 0.1); 
    color: white; border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; 
    padding: 11px 18px; 
    font-size: 18px;    
    border-radius: 50%; 
    transition: all 0.3s; z-index: 10;
    backdrop-filter: blur(4px);
}
.slider-btn:hover { 
    background-color: var(--color-accent); 
    border-color: var(--color-accent); 
}
.prev-btn { left: 7px; }  
.next-btn { right: 7px; } 

/* --- LABIAU IŠSKIRTAS PATIRTIES BANNERIS --- */
.stats-banner { background-color: var(--color-primary-light); padding: 64px 0; border-bottom: 4px solid var(--color-accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; position: relative; padding: 10px; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; top: 20%; right: 0; width: 1px; height: 60%; background: rgba(255,255,255,0.1); }
.stat-number { display: block; font-size: 3.5rem; font-weight: 700; color: var(--color-accent); line-height: 1; margin-bottom: 12px; font-family: 'Lora', serif; }
.stat-text { font-size: 0.9rem; color: #d0d5da; max-width: 200px; margin: 0 auto; line-height: 1.5; font-family: 'Inter', sans-serif; }

/* --- NAUJAS MINIMALISTINIS PASLAUGŲ IŠDĖSTYMAS --- */
.section { padding: 110px 0; } 
.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #ffffff; }

.section-header { text-align: center; margin-bottom: 70px; max-width: 650px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 16px; }

.services-list { display: flex; flex-direction: column; gap: 60px; }

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: 40px;
    transition: all 0.3s ease;
}

.service-row:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(181, 130, 80, 0.3); 
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.04);
}

.service-content h3 { font-size: 2rem; margin-bottom: 12px; font-weight: 600; }
.card-text { font-size: 1.05rem; line-height: 1.7; color: var(--color-text-body); margin-bottom: 20px;}
.price-highlight { color: var(--color-text-heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }

.service-badge-custom { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; padding: 6px 14px; border-radius: 4px; font-family: 'Inter', sans-serif; }
.mb-badge { margin-bottom: 20px; }
.service-badge-custom.highlight { background: #fdfaf6; color: var(--color-accent); border: 1px solid rgba(181, 130, 80, 0.2); }
.service-badge-custom.normal-badge { background: #f4f5f6; color: var(--color-text-muted); border: 1px solid var(--color-border); }

.service-features { list-style: none; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.service-features li { 
    font-size: 1rem; 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #ffffff; /* Pakeista teksto spalva */ 
}
.service-features li i { color: var(--color-accent); font-size: 0.9rem; }

.mt-4 { margin-top: 24px; }

/* Emergency eilutės specialus stilius */
.emergency-row { background: var(--emergency-bg-color); color: var(--emergency-text-color); border: none; }
.emergency-row h3 { color: white; }
.emergency-row .price-highlight-custom { color: var(--emergency-accent); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.emergency-row .text-white { color: rgba(255,255,255,0.9); }
.emergency-row .emergency-features { border-top-color: rgba(255,255,255,0.15); }
.emergency-row .emergency-features li { color: white; }
.emergency-row .emergency-features li i { color: white; }
.emergency-badge-label { background: rgba(255,255,255,0.2); color: white; }

.card { 
    background: var(--color-bg-light); 
    padding: 36px 28px; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--color-border); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }

.card-header-custom { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.card-icon-box { font-size: 1.6rem; color: var(--color-accent); background: #fdfaf6; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid rgba(181, 130, 80, 0.15); }

/* Patobulinti ir atskirti Emergency kortelės stiliai */
.card.emergency-card-custom { background: var(--emergency-bg-color); color: var(--emergency-text-color); border: 1px solid rgba(0,0,0,0.1); }
.card.emergency-card-custom h3, .card.emergency-card-custom .card-text { color: white; }
.card.emergency-card-custom .card-icon-box { background: rgba(255,255,255,0.1); color: white; border: none; }
.price-highlight-custom { color: var(--emergency-accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.card.emergency-card-custom .service-features { border-top-color: rgba(255,255,255,0.15); }
.card.emergency-card-custom .service-features li { color: #f0f0f0; }
.card.emergency-card-custom .service-features li i { color: white; }
.btn-emergency-link { display: inline-flex; align-items: center; gap: 8px; color: white; font-size: 0.9rem; font-weight: 600; text-decoration: none; margin-top: 20px; padding: 10px 0; border-bottom: 2px solid white; transition: opacity 0.3s; width: max-content; }
.btn-emergency-link:hover { opacity: 0.8; }

/* Modernizuota galerija */
.gallery-modern-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-item-wrap { height: 280px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.gallery-item-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item-wrap:hover img { transform: scale(1.06); }

/* Atskiras Sustainability puslapio stilius */
.bg-eco-page-header { background: linear-gradient(rgba(17,17,17,0.85), rgba(17,17,17,0.85)), url('sustainability.jpg') center/cover; padding: 100px 0; border-bottom: 3px solid var(--color-accent); }
.page-main-title { font-size: 3.5rem; margin-top: 10px; }
.text-white { color: white !important; }
.text-light-muted { color: #cbd5e1; font-size: 1.1rem; font-family: 'Inter', sans-serif; }
.eco-container-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.eco-lead { font-size: 1.1rem; margin-bottom: 30px; line-height: 1.7; color: var(--color-text-body); }
.eco-list-new { list-style: none; }
.eco-list-new li { display: flex; gap: 20px; margin-bottom: 24px; }
.icon-box-new { color: var(--color-accent); font-size: 1.5rem; margin-top: 4px; }
.list-text-new strong { display: block; color: var(--color-text-heading); font-size: 1.05rem; margin-bottom: 4px; }
.eco-visual-new { height: 450px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.eco-page-img { width: 100%; height: 100%; object-fit: cover; }

/* Reviews & Testimonials */
.ct-stars-main { color: var(--color-accent); font-size: 1.8rem; letter-spacing: 4px; margin-bottom: 12px; display: block; text-align: center; }
.ct-brand { font-weight: 700; color: var(--color-text-heading); }
.tp-text { text-align: center; margin-bottom: 40px; font-size: 1.05rem; }
.carousel-wrapper { position: relative; max-width: 1100px; margin: 0 auto; overflow: hidden; padding: 0 50px; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.carousel-item { flex: 0 0 calc(33.333% - 14px); } 
.review-card { background: white; padding: 28px; text-align: left; height: 100%; display: flex; flex-direction: column; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.review-card .stars { color: #ffb100; margin-bottom: 14px; font-size: 0.95rem; }
.review-text { font-style: normal; margin-bottom: 20px; flex-grow: 1; font-size: 0.92rem; line-height: 1.65; color: var(--color-text-body); }
.review-author { font-size: 1rem; color: var(--color-text-heading); font-weight: 700; margin-top: auto; }
.review-date { display: block; font-size: 0.8rem; color: var(--color-text-muted); font-weight: 400; margin-top: 4px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: 1px solid var(--color-border); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all 0.3s;}
.carousel-btn:hover { background: var(--color-primary); color: white; border-color: var(--color-primary);}
.btn-prev { left: 0; } .btn-next { right: 0; }

/* FAQ */
.faq-accordion { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-toggle { width: 100%; padding: 22px 0; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; color: var(--color-text-heading); text-align: left; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content p { padding-bottom: 22px; color: var(--color-text-body); font-size: 0.95rem; line-height: 1.6; }
.icon { position: relative; width: 14px; height: 14px; color: var(--color-accent); }
.icon::before, .icon::after { content: ''; position: absolute; background: currentColor; }
.icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.icon::after { top: 0; left: 6px; width: 2px; height: 14px; transition: transform 0.3s; }
.faq-toggle.active .icon::after { transform: rotate(90deg); }

/* Footer */
.footer { background: var(--color-primary); color: #8a929a; padding: 70px 0 25px; border-top: 1px solid #222; font-family: 'Inter', sans-serif; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-contact-form { display: flex; flex-direction: column; gap: 12px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.footer-contact-form input, .footer-contact-form textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 14px; color: white; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.9rem;}
.footer-contact-form input:focus, .footer-contact-form textarea:focus { outline: none; border-color: var(--color-accent); }
.footer-logo { height: 38px; margin-top: 20px; filter: brightness(0) invert(1); }
.footer h4 { color: white; font-family: 'Lora', serif; font-size: 1.05rem; margin-bottom: 24px; text-transform: none; letter-spacing: 0; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #8a929a; text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.contact-item { display: flex; gap: 12px; text-decoration: none; color: inherit; margin-bottom: 16px; font-size: 0.95rem; transition: color 0.3s; align-items: center; }
.contact-item i { color: var(--color-accent); }
.contact-item:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ==========================================================================
   50/50 PASLAUGŲ IŠDĖSTYMAS KONTEINERYJE (BE TARPŲ)
   ========================================================================== */

.services-split-section {
    background-color: var(--color-bg-light);
    padding: 90px 0; 
}

.services-split-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.split-row {
    display: flex;
    width: 100%;
    min-height: 420px; 
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-img-col {
    flex: 0 0 50%; 
    max-width: 50%; 
    position: relative;
    overflow: hidden;
}

.split-text-col {
    flex: 0 0 50%; 
    max-width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6% 8%;
    box-sizing: border-box; 
}

.split-img-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-inner {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.split-content-inner h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.split-content-inner .card-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Spalvų variacijos blokams */
.bg-dark-block { background-color: var(--color-primary); color: white; }
.bg-dark-block h3, .bg-dark-block .price-highlight { color: white; }
.text-light { color: #dbdbdb !important; }
.bg-light-block { background-color: #f4f5f6; color: var(--color-text-body); }
.bg-emergency-block { background-color: var(--emergency-bg-color); color: white; }
.bg-emergency-block .price-highlight-custom { color: var(--emergency-accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; font-family: 'Inter', sans-serif;}

/* ==========================================================================
   RESPONSYVUMAS (MOBILIOS VERSIJOS PATAISYMAI)
   ========================================================================== */

/* Bendra mobilioji juosta */
.mobile-contact-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: white; display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; box-shadow: 0 -5px 20px rgba(0,0,0,0.05); z-index: 9999; border-top: 1px solid var(--color-border); }
.m-btn { display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 4px; font-weight: 600; font-size: 0.95rem; font-family: 'Inter', sans-serif; }
.m-btn.call { background: var(--color-primary); color: white; }
.m-btn.mail { background: #f4f5f6; color: var(--color-primary); border: 1px solid var(--color-border); }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .gallery-modern-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    /* Bendri išdėstymo pataisymai */
    .hero { height: auto; padding: 120px 0 80px; }
    .hero-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
    .stat-item:nth-child(2n)::after { display: none; } 
    .eco-container-layout { grid-template-columns: 1fr; gap: 40px; }
    .eco-visual-new { height: 320px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-contact-form { max-width: 500px; margin: 0 auto; width: 100%; }
    .contact-item { justify-content: center; }
    .nav-links { display: none; }
    .carousel-item { flex: 0 0 calc(50% - 10px); } 
    .slider-btn { display: none; }

    /* Paslepiame viršutinę juostą mobiliuosiuose */
    .top-bar { display: none; }

    /* Sutvarkome viršutinės navigacijos išdėstymą (logo, mygtukas ir meniu) */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-toggle { 
        display: flex; 
        align-items: center;
        justify-content: center;
        padding: 6px;
    }

    /* Pamažiname 'Call Expert' mygtuką, kad viskas tilptų vienoje eilutėje */
    .nav-quote-btn {
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
    }

    /* 50/50 paslaugų išdėstymo sutvarkymas - MODERNŪS BOX'AI */
    .services-split-wrapper {
        gap: 40px; /* Sukuria gražius tarpus tarp paslaugų blokų */
        padding: 0 15px; /* Atitraukia korteles nuo ekrano kraštų */
    }
    
    .split-row, .split-row.reverse {
        flex-direction: column;
        border-radius: 16px; /* Užapvalinti kortelių kampai */
        overflow: hidden; /* Paslepia išlendančius nuotraukų kampus */
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); /* Suteikia 3D slankiojimo efektą */
        border: 1px solid var(--color-border);
    }
    
    .split-img-col, .split-text-col {
        width: 100%;
        max-width: 100%; 
        flex: 0 0 100%;  
    }
    
    .split-img-col {
        min-height: 280px;
        order: -1; /* Nuotrauka visada rodoma virš teksto */
    }
    
    .split-text-col {
        padding: 40px 24px;
    }
    
    .split-content-inner {
        max-width: 100%;
    }

    /* Alternatyvaus kortelių išdėstymo pataisymai */
    .service-row, .service-row.reverse { flex-direction: column; padding: 30px; gap: 30px; }
    .service-image { width: 100%; height: 300px; order: -1; }

    /* Žemėlapio ir ETA skaičiuoklės pataisymai mobiliesiems */
    #eta-calculator > .container > div {
        flex-direction: column; /* Išdėlioja stulpeliu */
        gap: 20px; /* Sumažina tarpą */
    }
    
    #eta-calculator #map {
        min-height: 250px !important; /* Perpus sumažintas aukštis telefone */
        border-radius: 12px;
    }
    
    #eta-calculator > .container > div > div {
        min-width: 100% !important; /* Padaro, kad abu blokai užimtų 100% pločio, bet būtų žemesni */
    }
}

@media (max-width: 650px) {
    body { padding-bottom: 65px; } 
    .mobile-contact-bar { display: grid; } 
    
    /* Hero elementų optimizavimas */
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .price-amount { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    
    /* Tarpai ir tinkleliai */
    .services-split-section { padding: 50px 0; }
    .stats-banner { padding: 40px 0; }
    
    /* Statistika 2 stulpeliais telefonu */
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px 15px; 
    }
    .stat-item {
        padding: 0; 
    }
    .stat-number {
        font-size: 2.8rem; 
        margin-bottom: 8px;
    }
    .stat-text {
        font-size: 0.85rem; 
        line-height: 1.4;
    }
    .stat-item::after { display: none; } 
    .stat-item:not(:last-child) { 
        border-bottom: none; 
        padding-bottom: 0; 
    }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-modern-grid { grid-template-columns: 1fr; }
    
    /* Karuselė ir kortelės */
    .carousel-item { flex: 0 0 100%; }
    .carousel-wrapper { padding: 0 20px; }
    .carousel-btn { display: none; }
    .service-row { padding: 20px; }
    .service-image { height: 220px; }
    .service-content h3 { font-size: 1.6rem; }

    /* Logotipas */
    .logo { transform: scale(1) translateY(0); }

    /* Footer formos fiksavimas mobiliesiems */
    .f-row { grid-template-columns: 1fr; }
    .footer-contact-form button[type="submit"] { 
        width: auto; 
        align-self: center; 
        min-width: 220px; 
    }

    /* YPAČ TVARKINGA APATINĖ NAVIGACIJA (KORTELĖS / MYGTUKAI) */
    .footer h4 { 
        text-align: center; 
        margin-bottom: 24px; 
    }
    
    .footer-links ul {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 stulpeliai */
        gap: 12px; /* Tvarkingi tarpai tarp blokelių */
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04); /* Subtilus fonas */
        border: 1px solid rgba(255, 255, 255, 0.08); /* Vos matomas rėmelis */
        border-radius: 8px; /* Švelniai užapvalinti kampai */
        padding: 14px 10px;
        font-size: 0.9rem;
        text-align: center;
        height: 100%; /* Sulygiuoja visų mygtukų aukštį */
    }
    
    /* Kontaktų bloko suvienodinimas su meniu stiliumi */
    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 16px 10px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
}

/* Skubios pagalbos skambučio bloko dizainas */
.emergency-call-box {
    background: rgba(255, 255, 255, 0.08); /* Švelnus permatomas fonas */
    border-left: 4px solid #ff3333; /* Ryški raudona/avarinė linija kairėje */
    border-radius: 6px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    max-width: 320px; /* Kad neišsitemptų per daug */
}

.emergency-call-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-phone-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* Telefono ikonėlės stilius ir animacija */
.phone-icon-pulse {
    background: #ff3333; /* Ryškus ikonėlės fonas */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.emergency-call-box:hover .phone-icon-pulse {
    transform: scale(1.1) rotate(15deg); /* Ikonėlė šiek tiek pasisuka užvedus pelę */
}

/* Teksto išdėstymas */
.call-text-wrapper {
    display: flex;
    flex-direction: column;
}

.call-text-wrapper small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cccccc;
    margin-bottom: 2px;
}

.call-text-wrapper strong {
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* Teksto spalva šviesiuose blokuose (padaro juodą) */
.bg-light-block .service-features li {
    color: #2e2e2e; 
}

