/* =========================================================
   AUTOGYVAS.LT — PRO DARK AUTOMOTIVE DESIGN
   =========================================================

   Failo struktūra:
   1. Globalūs nustatymai
   2. Header / navigacija
   3. Hero sekcija
   4. Bendros sekcijos
   5. Paslaugos
   6. Apie
   7. Darbų istorija
   8. Atsiliepimai
   9. Kontaktai / registracija
   10. Footer
   11. Admin login / admin panelė
   12. Mobile responsive

   ========================================================= */


/* =========================================================
   1. GLOBALŪS NUSTATYMAI
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #06070a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

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


/* =========================================================
   2. HEADER / NAVIGACIJA
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 6, 9, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand span {
    color: #d71920;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #d5dae3;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover {
    color: #ffffff;
}

.header-btn {
    color: #ffffff;
    background: rgba(215,25,32,0.95);
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 16px 40px rgba(215,25,32,0.28);
}


/* =========================================================
   3. HERO SEKCIJA
   ========================================================= */

/*
   Čia naudojama foninė nuotrauka:
   /static/img/hero-bg.jpg

   Įkelk per FileZilla:
   /var/www/html/autogyvas.lt/static/img/hero-bg.jpg
*/

.hero-main {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background:
        url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* pagrindinis tamsinimas + raudonas/mėlynas ambient glow */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 42%, rgba(215, 25, 32, 0.34), transparent 32%),
        radial-gradient(circle at 82% 38%, rgba(20, 92, 180, 0.28), transparent 34%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            rgba(0, 0, 0, 0.72) 68%,
            #06070a 100%
        );
    pointer-events: none;
}

/* papildomas minkštas perėjimas į kitą sekciją */
.hero-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 260px;
    background: linear-gradient(
        180deg,
        rgba(6, 7, 10, 0) 0%,
        rgba(6, 7, 10, 0.72) 48%,
        #06070a 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-center {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 80px;
}

.hero-label {
    color: #ff2b2b;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 9px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-logo-text {
    margin: 0;
    font-size: clamp(72px, 8vw, 128px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 18px 60px rgba(0,0,0,0.75);
}

.hero-logo-text span {
    color: #e92026;
}

.hero-location {
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-color-line {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 22px auto 26px;
}

.hero-color-line span {
    display: block;
    width: 32px;
    height: 4px;
    border-radius: 99px;
}

.hero-color-line span:nth-child(1) {
    background: #1f7aff;
}

.hero-color-line span:nth-child(2) {
    background: #e92026;
}

.hero-color-line span:nth-child(3) {
    background: #8d36ff;
}

.hero-description {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.72);
    font-size: 19px;
    line-height: 1.75;
}

.availability-box {
    width: min(520px, 100%);
    margin: 34px auto 0;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(15,15,18,0.78);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.clock-icon {
    color: #e92026;
    font-size: 30px;
}

.availability-box strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 5px;
}

.availability-box span {
    color: rgba(255,255,255,0.62);
    font-size: 15px;
}

.availability-box b {
    color: #e92026;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
}

.btn-primary {
    background: #ed1c24;
    color: #ffffff;
    box-shadow: 0 20px 55px rgba(237,28,36,0.35);
}

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

.btn-secondary {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}


/* =========================================================
   4. BENDROS SEKCIJOS / MYGTUKAI
   ========================================================= */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.section-heading span,
.section-label {
    display: inline-block;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading h2,
.about-grid h2,
.history-box h2,
.contact-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.07;
    font-weight: 900;
    letter-spacing: -1.3px;
}

.section-heading p,
.about-content p,
.history-box p,
.contact-info p {
    color: #aeb7c5;
    font-size: 18px;
    line-height: 1.75;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.btn-primary {
    background: #d71920;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(215,25,32,0.32);
}

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

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}


/* =========================================================
   5. PASLAUGOS
   ========================================================= */

.services-section {
    background: #06070a;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Viena paslaugos kortelė */
.service-card {
    min-height: 280px;
    padding: 32px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215,25,32,0.55);
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.service-number {
    color: #d71920;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 24px;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    font-weight: 900;
}

.service-card p {
    margin: 0;
    color: #aeb7c5;
    line-height: 1.7;
}


/* =========================================================
   6. APIE SEKCIJA
   ========================================================= */

.about-section {
    background:
        linear-gradient(120deg, rgba(215,25,32,0.11), transparent 38%),
        linear-gradient(270deg, rgba(20,92,180,0.12), transparent 38%),
        #05070a;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.about-points div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    font-weight: 800;
}


/* =========================================================
   7. DARBŲ ISTORIJA
   ========================================================= */

.history-section {
    background: #080a0f;
}

.history-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 48px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 85% 30%, rgba(215,25,32,0.18), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
}

.history-box div {
    max-width: 720px;
}


/* =========================================================
   8. ATSILIEPIMAI
   ========================================================= */

.reviews-section {
    background: #06070a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px;
    border-radius: 26px;
    background: #0d1118;
    border: 1px solid rgba(255,255,255,0.09);
}

.stars {
    color: #f0b429;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-card p {
    color: #c8d0dc;
    line-height: 1.7;
    min-height: 95px;
}

.review-card strong {
    display: block;
    margin-top: 20px;
    font-weight: 900;
}

.review-card span {
    display: block;
    margin-top: 6px;
    color: #8f9aaa;
    font-size: 14px;
}


/* =========================================================
   9. KONTAKTAI / REGISTRACIJA
   ========================================================= */

.contact-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(215,25,32,0.18), transparent 28%),
        #080a0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 35px;
}

.contact-list div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
}

.contact-list span {
    display: block;
    color: #8f9aaa;
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-list strong {
    color: #ffffff;
}

/* Registracijos forma */
.booking-form {
    padding: 32px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 15px;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: rgba(215,25,32,0.85);
    box-shadow: 0 0 0 4px rgba(215,25,32,0.14);
}

.booking-form textarea {
    min-height: 125px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-form button {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 15px;
    background: #d71920;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.booking-form button:hover {
    background: #f1252d;
}


/* =========================================================
   10. FOOTER
   ========================================================= */

.site-footer {
    padding: 28px 0;
    background: #030405;
    color: #8993a3;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


/* =========================================================
   11. ADMIN LOGIN / ADMIN PANELĖ
   Šita dalis naudojama:
   admin_login.html
   admin_dashboard.html
   ========================================================= */

.admin-body {
    background: #07090d;
    color: #ffffff;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.admin-login {
    width: min(420px, 90%);
    margin: 120px auto;
    padding: 34px;
    border-radius: 24px;
    background: #10141c;
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-login h1 {
    margin: 0 0 24px;
    font-size: 32px;
}

.admin-login input,
.admin-login button,
.admin-card input,
.admin-card textarea,
.admin-card select,
.admin-card button {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 15px;
}

.admin-login input,
.admin-card input,
.admin-card textarea,
.admin-card select {
    color: #ffffff;
    background: #080a0f;
    border: 1px solid rgba(255,255,255,0.12);
}

.admin-login button,
.admin-card button {
    color: #ffffff;
    border: none;
    background: #d71920;
    font-weight: 900;
    cursor: pointer;
}

.admin-panel {
    width: min(1250px, 90%);
    margin: 40px auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-header a,
.admin-table a {
    color: #ff3b30;
    font-weight: 800;
}

.admin-card {
    padding: 28px;
    margin-bottom: 28px;
    border-radius: 24px;
    background: #10141c;
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-card label {
    display: block;
    margin-bottom: 7px;
    color: #b8c0cc;
    font-weight: 700;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    vertical-align: top;
}

.status {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.status.nauja {
    background: #ff9800;
    color: #111111;
}

.status.patvirtinta {
    background: #145cb4;
    color: #ffffff;
}

.status.atlikta {
    background: #16833a;
    color: #ffffff;
}

.status.atsaukta {
    background: #b00020;
    color: #ffffff;
}

/* =========================================================
   REZERVACIJOS PUSLAPIS
   Panašus principas kaip nevaziuoja.lt:
   automobilis → paslauga → data/laikas → papildomi pasirinkimai
   ========================================================= */

.reservation-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 22%, rgba(215,25,32,.20), transparent 28%),
        radial-gradient(circle at 86% 28%, rgba(20,92,180,.18), transparent 30%),
        #f4f6fb;
    color: #111827;
}

.reservation-page {
    min-height: 100vh;
    padding: 130px 0 70px;
}

.reservation-shell {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 42px;
    align-items: start;
}

.reservation-left {
    position: sticky;
    top: 120px;
    padding: 34px;
    border-radius: 30px;
    color: white;
    background:
        linear-gradient(145deg, rgba(10,12,18,.96), rgba(18,23,34,.92)),
        radial-gradient(circle at 20% 20%, rgba(215,25,32,.20), transparent 30%);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 35px 90px rgba(0,0,0,.22);
}

.reservation-label {
    display: inline-block;
    color: #ff2b32;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.reservation-left h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 20px;
    font-weight: 900;
}

.reservation-left p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
}

.reservation-benefits {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.reservation-benefits div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
}

.reservation-benefits strong {
    display: block;
    margin-bottom: 7px;
}

.reservation-benefits span {
    color: #94a3b8;
    font-size: 14px;
}

.reservation-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(99,102,241,.18);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 35px 90px rgba(15,23,42,.14);
}

.reservation-card h2 {
    font-size: 34px;
    margin: 0 0 28px;
    color: #111827;
}

.reservation-section-title {
    font-size: 18px;
    font-weight: 900;
    margin: 26px 0 12px;
    color: #111827;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.reservation-card input,
.reservation-card textarea,
.reservation-card select {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid #d7dbea;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    margin-bottom: 14px;
}

.reservation-card textarea {
    min-height: 120px;
    resize: vertical;
}

.reservation-card input:focus,
.reservation-card textarea:focus,
.reservation-card select:focus {
    outline: none;
    border-color: #d71920;
    box-shadow: 0 0 0 4px rgba(215,25,32,.12);
}

.calendar-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: #eef1f7;
    border: 1px solid #dce1ec;
}

.date-box label,
.time-list label {
    display: block;
    font-weight: 800;
    color: #374151;
    margin-bottom: 10px;
}

.time-options {
    max-height: 250px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-right: 8px;
}

.time-options label {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: white;
    border: 1px solid #d7dbea;
    cursor: pointer;
    font-weight: 800;
    color: #111827;
}

.time-options input {
    width: auto;
    min-height: auto;
    margin: 0 8px 0 0;
}

.time-options label:has(input:checked) {
    background: #d71920;
    color: white;
    border-color: #d71920;
}

.switch-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.switch-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: #eef1f7;
    border: 1px solid #dce1ec;
    font-weight: 800;
}

.switch-box input {
    display: none;
}

.switch-box em {
    position: relative;
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: #c8ceda;
    transition: .2s;
}

.switch-box em::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: white;
    transition: .2s;
}

.switch-box input:checked + em {
    background: #d71920;
}

.switch-box input:checked + em::after {
    transform: translateX(22px);
}

.reservation-submit {
    width: 100%;
    min-height: 64px;
    margin-top: 14px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #d71920, #ff3138);
    color: white;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(215,25,32,.28);
}

.reservation-submit small {
    display: block;
    font-size: 12px;
    opacity: .75;
    margin-top: 4px;
}

.reservation-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: #eef1f7;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

/* Sėkmės puslapis */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.success-card {
    width: min(480px, 92%);
    text-align: center;
    padding: 42px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 35px 90px rgba(15,23,42,.16);
}

.success-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #16a34a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
}

.success-card h1 {
    color: #111827;
    margin-bottom: 12px;
}

.success-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ag-client-hub {
  position: relative;
  overflow: hidden;
  padding: 92px 20px;
  background: #050914;
  color: #fff;
}

.ag-client-hub__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .35), transparent 34%),
    radial-gradient(circle at 80% 15%, rgba(14, 165, 233, .18), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(2, 6, 23, .98));
}

.ag-client-hub__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.ag-client-hub__eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(147, 197, 253, .25);
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ag-client-hub__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.ag-client-hub h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
}

.ag-client-hub p {
  margin: 18px 0 0;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.65;
}

.ag-client-hub__main-btn,
.ag-client-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(37, 99, 235, .35);
}

.ag-client-hub__main-btn {
  padding: 15px 20px;
  white-space: nowrap;
}

.ag-client-hub__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ag-client-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 28px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ag-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 197, 253, .45);
  background: rgba(15, 23, 42, .88);
}

.ag-client-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(37, 99, 235, .18);
  font-size: 26px;
  margin-bottom: 20px;
}

.ag-client-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -.03em;
}

.ag-client-card p {
  margin: 12px 0 22px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.55;
}

.ag-client-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 13px 16px;
}

@media (max-width: 900px) {
  .ag-client-hub__header {
    grid-template-columns: 1fr;
  }

  .ag-client-hub__main-btn {
    width: 100%;
  }

  .ag-client-hub__cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   12. MOBILE RESPONSIVE
   ========================================================= */
/* Mobilus rezervacijos puslapis */

@media (max-width: 900px) {
    .reservation-shell {
        grid-template-columns: 1fr;
    }

    .reservation-left {
        position: static;
    }

    .calendar-layout,
    .reservation-grid,
    .switch-row {
        grid-template-columns: 1fr;
    }

    .time-options {
        grid-template-columns: 1fr;
    }

    .reservation-left h1 {
        font-size: 34px;
    }
}

@media (max-width: 980px) {

    .main-nav,
    .header-btn {
        display: none;
    }

    .hero-main h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-main p {
        font-size: 17px;
    }

    .services-grid,
    .about-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .history-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .hero-label {
        font-size: 11px;
        letter-spacing: 5px;
    }

    .hero-logo-text {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .hero-location {
        font-size: 16px;
    }

    .hero-description {
        font-size: 16px;
    }

    .availability-box {
        align-items: flex-start;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}


/* =========================================================
   AUTOGYVAS MINIMALŪS PATAISYMAI
   Tik suliejimas, mėlynos zonos pakeitimas ir informacinė forma.
   ========================================================= */
/*
body {
    background:
        radial-gradient(circle at 18% 22%, rgba(215,25,32,0.10), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(18,24,32,0.52), transparent 32%),
        #06070a;
}

.hero-main {
    min-height: 92vh;
    padding-bottom: 210px;
    margin-bottom: -190px;
}

.hero-main::after {
    bottom: -2px;
    height: 430px;
    background:
        linear-gradient(180deg,
            rgba(6,7,10,0) 0%,
            rgba(6,7,10,0.35) 34%,
            rgba(6,7,10,0.72) 62%,
            #06070a 100%
        );
}

.hero-overlay {
    background:
        radial-gradient(circle at 18% 42%, rgba(215,25,32,0.34), transparent 32%),
        radial-gradient(circle at 82% 38%, rgba(16,24,32,0.34), transparent 34%),
        linear-gradient(180deg,
            rgba(0,0,0,0.44) 0%,
            rgba(0,0,0,0.48) 34%,
            rgba(0,0,0,0.74) 67%,
            #06070a 100%
        );
}

.services-section {
    margin-top: 0;
    padding-top: 160px;
    background:
        radial-gradient(circle at 18% 0%, rgba(215,25,32,0.10), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(255,255,255,0.035), transparent 32%),
        linear-gradient(180deg,
            rgba(6,7,10,0) 0%,
            #06070a 38%,
            #06070a 100%
        );
    border-top: 0;
    position: relative;
    z-index: 2;
}

.about-section {
    background:
        radial-gradient(circle at 15% 0%, rgba(215,25,32,0.10), transparent 30%),
        radial-gradient(circle at 85% 0%, rgba(255,255,255,0.04), transparent 34%),
        linear-gradient(180deg, #06070a 0%, #080a0f 52%, #06070a 100%);
    border-top: 0;
    border-bottom: 0;
}

.ag-client-hub {
    background:
        radial-gradient(circle at 18% 18%, rgba(215,25,32,.18), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(255,255,255,.045), transparent 32%),
        linear-gradient(180deg, #06070a 0%, #090b0f 48%, #06070a 100%);
}

.ag-client-hub__bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(215,25,32,.25), transparent 34%),
        radial-gradient(circle at 80% 16%, rgba(215,25,32,.12), transparent 30%),
        linear-gradient(135deg, rgba(10,12,16,.94), rgba(3,4,6,.98));
}

.ag-client-hub__eyebrow {
    border-color: rgba(215,25,32,.32);
    background: rgba(215,25,32,.12);
    color: #ff3b42;
}

.ag-client-hub__main-btn,
.ag-client-card span {
    background: linear-gradient(135deg, #d71920, #ff2b32);
    box-shadow: 0 18px 45px rgba(215,25,32,.28);
}

.ag-client-card {
    background: rgba(13,17,24,.76);
    border-color: rgba(255,255,255,.10);
}

.ag-client-card:hover {
    border-color: rgba(215,25,32,.45);
    background: rgba(16,18,24,.92);
}

.ag-client-card__icon {
    background: rgba(215,25,32,.16);
}

.contact-section {
    background:
        radial-gradient(circle at 82% 18%, rgba(215,25,32,0.16), transparent 30%),
        radial-gradient(circle at 12% 0%, rgba(255,255,255,0.035), transparent 30%),
        linear-gradient(180deg, #06070a 0%, #080a0f 100%);
}
*/

/* =========================================================
   PRO KONTAKTŲ BLOKAS — LOVABLE / PREMIUM AUTOGYVAS
   ========================================================= */

.contact-pro-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 105px;
    background:
        linear-gradient(180deg, #06070a 0%, #07090d 45%, #050608 100%);
}

.contact-pro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.92)),
        url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    opacity: .30;
    filter: blur(1px);
    transform: scale(1.04);
}

.contact-bg-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .55;
    pointer-events: none;
}

.contact-bg-red {
    left: -130px;
    top: 150px;
    background: rgba(215, 25, 32, .45);
}

.contact-bg-blue {
    right: -120px;
    top: 210px;
    background: rgba(20, 92, 180, .42);
}

.contact-pro-section .container {
    position: relative;
    z-index: 2;
}

.contact-pro-heading {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 34px;
}

.contact-pro-heading span {
    display: inline-block;
    color: #ff252c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-pro-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -2.6px;
    text-shadow: 0 18px 60px rgba(0,0,0,.6);
}

.contact-pro-heading p {
    margin: 20px auto 0;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.7;
}

.contact-pro-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-top: 36px;
}

.contact-info-stack {
    display: grid;
    gap: 16px;
}

.contact-info-card {
    min-height: 118px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(0,0,0,.22);
    transition: .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(237,28,36,.45);
    box-shadow: 0 28px 70px rgba(237,28,36,.12);
}

.contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ff3037;
    font-size: 26px;
    background: rgba(237,28,36,.12);
    border: 1px solid rgba(237,28,36,.25);
    box-shadow: inset 0 0 35px rgba(237,28,36,.10);
}

.contact-info-card span {
    display: block;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-info-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.contact-info-card small {
    display: block;
    color: rgba(255,255,255,.55);
    margin-top: 7px;
    font-size: 13px;
}

.contact-main-column {
    display: grid;
    gap: 18px;
}

.contact-form-pro {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(237,28,36,.10), rgba(20,92,180,.08)),
        rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(22px);
    box-shadow:
        0 34px 100px rgba(0,0,0,.35),
        0 0 0 1px rgba(255,255,255,.03) inset;
}

.contact-form-pro::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    top: -140px;
    background: rgba(237,28,36,.11);
    border-radius: 50%;
    filter: blur(75px);
    pointer-events: none;
}

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

.input-with-icon {
    position: relative;
    margin-bottom: 18px;
}

.input-with-icon > span {
    position: absolute;
    left: 20px;
    top: 19px;
    color: rgba(255,255,255,.54);
    font-size: 18px;
    z-index: 2;
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    margin: 0;
    color: #fff;
    background: rgba(5,6,9,.48);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    padding: 19px 20px 19px 58px;
    font-size: 16px;
    outline: none;
    transition: .22s ease;
}

.input-with-icon textarea {
    min-height: 165px;
    resize: vertical;
    padding-top: 20px;
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
    color: rgba(255,255,255,.58);
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    border-color: rgba(237,28,36,.85);
    box-shadow:
        0 0 0 4px rgba(237,28,36,.14),
        0 0 35px rgba(237,28,36,.12);
}

.textarea-icon > span {
    top: 22px;
}

.contact-form-pro button {
    width: 100%;
    min-height: 64px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #ed1c24, #ff3037);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 22px 55px rgba(237,28,36,.32);
    transition: .24s ease;
}

.contact-form-pro button:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(237,28,36,.46);
}

.contact-map-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15,23,42,.88), rgba(8,13,22,.86)),
        radial-gradient(circle at 72% 48%, rgba(237,28,36,.20), transparent 18%);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.contact-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(24deg, transparent 0 48%, rgba(255,255,255,.08) 49% 50%, transparent 51%),
        linear-gradient(118deg, transparent 0 42%, rgba(255,255,255,.05) 43% 44%, transparent 45%),
        linear-gradient(165deg, transparent 0 50%, rgba(255,255,255,.06) 51% 52%, transparent 53%);
    opacity: .45;
}

.map-overlay-card {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 3;
    width: min(290px, calc(100% - 60px));
    padding: 22px;
    border-radius: 18px;
    background: rgba(5,6,9,.78);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}

.map-overlay-card span {
    display: block;
    color: #ff3037;
    font-weight: 900;
    margin-bottom: 12px;
}

.map-overlay-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.map-overlay-card p {
    color: rgba(255,255,255,.70);
    line-height: 1.5;
    margin: 0 0 14px;
}

.map-overlay-card a {
    display: inline-flex;
    color: #fff;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 800;
}

.map-pin {
    position: absolute;
    right: 30%;
    top: 44%;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: transparent;
    background: #ed1c24;
    box-shadow: 0 0 0 10px rgba(237,28,36,.16), 0 18px 40px rgba(237,28,36,.35);
}

.map-pin::after {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #050608;
}

.map-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 24%, rgba(255,255,255,.05) 25% 26%, transparent 27%),
        linear-gradient(0deg, transparent 0 32%, rgba(255,255,255,.04) 33% 34%, transparent 35%);
    opacity: .65;
}

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

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-pro-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 560px) {
    .contact-pro-section {
        padding: 86px 0 80px;
    }

    .contact-info-card {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 18px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    .contact-form-pro {
        padding: 22px;
        border-radius: 22px;
    }

    .input-with-icon input,
    .input-with-icon textarea {
        padding-left: 50px;
    }
}


/* =========================================================
   HERO PATOBULINIMAI — geras fono suliejimas ir realus laikas
   ========================================================= */

.hero-main {
    background:
        url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background:
        radial-gradient(circle at 18% 42%, rgba(215, 25, 32, 0.28), transparent 32%),
        radial-gradient(circle at 82% 38%, rgba(20, 92, 180, 0.22), transparent 34%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.46) 36%,
            rgba(0, 0, 0, 0.74) 70%,
            #06070a 100%
        );
}

.hero-main::after {
    height: 340px;
    background: linear-gradient(
        180deg,
        rgba(6, 7, 10, 0) 0%,
        rgba(6, 7, 10, .60) 45%,
        #06070a 100%
    );
}

.availability-box {
    border-color: rgba(255,255,255,.16);
    background: rgba(10,11,15,.72);
}

.availability-box strong {
    font-weight: 900;
}

.availability-box b {
    color: #ff3037;
}

