:root {
    --primary-color: #0a2540;
    --secondary-color: #00d4b2;
    --accent-color: #ff6b6b;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --gray-border: #e9ecef;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: var(--text-dark); line-height: 1.6; background-color: #ffffff; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.btn { display: inline-block; background-color: var(--secondary-color); color: var(--primary-color); padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn:hover { background-color: #00b396; transform: translateY(-2px); }

/* NAVIGACIJA */
header { background-color: var(--primary-color); position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo { color: var(--text-light); font-size: 24px; font-weight: 800; letter-spacing: 1px; text-decoration: none; }
.logo span { color: var(--secondary-color); }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 20px; position: relative; }
.nav-links a { color: var(--text-light); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary-color); }

/* Paslaugų dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--primary-color); min-width: 280px; padding: 10px 0; border-radius: 0 0 8px 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.25); list-style: none; }
.dropdown-menu li { margin: 0; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 15px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown > a::after { content: " ▾"; font-size: 11px; }

/* Burger (mobilus meniu) */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--text-light); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* HERO (pagrindinis) */
.hero {
    background: linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.9)),
                url('../img/serviso-centras-klaipeda.jpg');
    background-repeat: no-repeat; background-position: center center; background-size: cover;
    min-height: 100vh; display: flex; align-items: center; color: var(--text-light); padding-top: 80px;
}
.hero-content { max-width: 700px; }
.hero h1 { font-size: 46px; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.badge-container { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 14px; border: 1px solid rgba(255,255,255,0.2); }

/* VIDINIŲ PUSLAPIŲ HERO */
.page-hero { background: linear-gradient(rgba(10,37,64,0.92), rgba(10,37,64,0.95)), url('../img/serviso-centras-klaipeda.jpg') center/cover no-repeat; color: var(--text-light); padding: 150px 0 60px 0; }
.page-hero h1 { font-size: 36px; line-height: 1.25; margin-bottom: 12px; }
.page-hero p { font-size: 17px; opacity: 0.9; max-width: 750px; }
.breadcrumbs { font-size: 13px; margin-bottom: 18px; opacity: 0.75; }
.breadcrumbs a { color: var(--secondary-color); text-decoration: none; }

/* TURINIO BLOKAI */
.content-section { padding: 60px 0; }
.content-section.alt { background: var(--bg-light); }
.content-section h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 18px; }
.content-section h3 { font-size: 20px; color: var(--primary-color); margin: 25px 0 10px 0; }
.content-section p { margin-bottom: 15px; max-width: 850px; }
.content-section ul { margin: 0 0 15px 22px; max-width: 850px; }
.content-section ul li { margin-bottom: 8px; }
.content-img { max-width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin: 10px 0 25px 0; }
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.cta-strip { background: var(--secondary-color); padding: 35px 0; text-align: center; }
.cta-strip h2 { color: var(--primary-color); font-size: 24px; margin-bottom: 15px; }
.cta-strip .btn { background: var(--primary-color); color: var(--text-light); }

/* SERTIFIKATAI */
.certificates-section { padding: 60px 0; background-color: #ffffff; text-align: center; }
.certificates-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.cert-card { background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); max-width: 260px; width: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.cert-card img { width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--gray-border); display: block; }
.cert-card p { margin-top: 12px; font-weight: 600; font-size: 15px; color: var(--primary-color); }
.cert-modal { display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10,37,64,0.9); justify-content: center; align-items: center; cursor: zoom-out; padding: 20px; }
.cert-modal img { max-width: 90%; max-height: 85vh; border-radius: 6px; box-shadow: 0 5px 30px rgba(0,0,0,0.5); animation: zoomIn 0.3s ease; }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* STATISTIKA */
.stats { background-color: var(--secondary-color); color: var(--primary-color); padding: 40px 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item h3 { font-size: 36px; font-weight: 800; }

/* PASLAUGOS */
.services { padding: 80px 0; background-color: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; color: var(--primary-color); margin-bottom: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 40px 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; display: block; text-decoration: none; color: var(--text-dark); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 22px rgba(0,0,0,0.1); }
.service-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 20px; }
.service-card .more { display: inline-block; margin-top: 14px; color: var(--secondary-color); font-weight: 600; font-size: 14px; }

/* GALERIJA */
.gallery { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; height: 250px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); background-color: #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; padding: 20px; font-size: 16px; font-weight: 500; }

/* KAINŲ LENTELĖ */
.price-table { width: 100%; max-width: 850px; border-collapse: collapse; margin: 20px 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.06); border-radius: 8px; overflow: hidden; }
.price-table th { background: var(--primary-color); color: var(--text-light); text-align: left; padding: 14px 18px; font-size: 15px; }
.price-table td { padding: 13px 18px; border-bottom: 1px solid var(--gray-border); font-size: 15px; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 700; color: var(--primary-color); white-space: nowrap; }
.price-note { font-size: 13px; color: #777; max-width: 850px; }

/* DUK / FAQ */
.faq-item { max-width: 850px; background: #fff; border: 1px solid var(--gray-border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 600; color: var(--primary-color); cursor: pointer; list-style: none; position: relative; padding-right: 45px; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--secondary-color); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-answer { padding: 0 20px 18px 20px; color: #444; }

/* FORMA IR KONTAKTAI */
.contact { padding: 80px 0; background-color: var(--primary-color); color: var(--text-light); }
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; }
.contact-info h3 { font-size: 24px; margin-bottom: 20px; color: var(--secondary-color); }
.contact-info p { margin-bottom: 15px; }
.rekvizitai-box { background: rgba(255,255,255,0.05); padding: 18px; border-radius: 5px; margin-top: 20px; border-left: 3px solid var(--secondary-color); font-size: 14px; color: rgba(255,255,255,0.85); }
.rekvizitai-box h4 { color: var(--text-light); margin-bottom: 8px; font-size: 16px; }
.contact-form { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.9); color: #000; font-size: 16px; }
.form-group textarea { resize: vertical; height: 100px; }

/* KLAIDOS / SĖKMĖS PRANEŠIMAI */
.form-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: 6px; padding: 15px 20px; margin-bottom: 20px; font-weight: 500; }
.form-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 6px; padding: 15px 20px; margin-bottom: 20px; }
.form-error ul { margin: 8px 0 0 18px; }

/* Honeypot – visiškai paslėptas */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* FOOTERIS */
footer { background-color: #051424; color: rgba(255,255,255,0.6); padding: 45px 0 35px 0; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 35px; text-align: left; margin-bottom: 30px; }
.footer-cols h4 { color: var(--text-light); font-size: 15px; margin-bottom: 12px; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; }
.footer-cols a:hover { color: var(--secondary-color); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-rekvizitai { font-size: 12px; margin-top: 10px; opacity: 0.7; line-height: 1.5; }

/* FIKSUOTAS SKAMBUČIO MYGTUKAS (mobilus) */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1500; background: var(--secondary-color); color: var(--primary-color); text-align: center; padding: 14px; font-weight: 800; font-size: 17px; text-decoration: none; box-shadow: 0 -3px 12px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary-color); flex-direction: column; align-items: flex-start; padding: 10px 5%; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
    .nav-links.open { display: flex; }
    .nav-links li { margin: 10px 0; }
    .dropdown-menu { display: block; position: static; box-shadow: none; padding-left: 15px; min-width: 0; }
    .dropdown > a::after { content: ""; }
    .burger { display: block; }
    .nav-cta { display: none; }
    .hero h1 { font-size: 32px; }
    .hero { min-height: auto; padding: 140px 0 80px 0; }
    .page-hero h1 { font-size: 27px; }
    .certificates-grid { gap: 20px; }
    .two-col { grid-template-columns: 1fr; }
    .sticky-call { display: block; }
    body { padding-bottom: 52px; }
}
