/* /* =========================================================
   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;
}

.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-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;
}

.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%;
    }
} */