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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: #f6f3ee;
    color: #111827;
}

.site-header {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    max-width: 1280px;
    z-index: 1000;
    padding: 18px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
}

.logo {
    text-decoration: none;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: #0f766e;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a,
.admin-link {
    text-decoration: none;
    color: white;
    font-weight: 800;
    transition: 0.3s;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.nav a:hover,
.admin-link:hover {
    color: #0f766e;
}

.admin-link {
    padding: 12px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.35);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 60px 80px;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.18)),
        url("/static/images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    color: white;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-head span,
.contacts-content span {
    display: inline-block;
    margin-bottom: 16px;
    color: #5eead4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
}

.hero h1 {
    font-size: 72px;
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero p {
    font-size: 21px;
    max-width: 650px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 34px;
}

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

.primary-btn,
.secondary-btn {
    padding: 17px 28px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
}

.primary-btn {
    background: #0f766e;
    color: white;
    box-shadow: 0 18px 40px rgba(15, 118, 110, 0.35);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
}

.hero-card {
    width: 330px;
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.hero-card span {
    color: #5eead4;
    font-weight: 800;
}

.hero-card h3 {
    font-size: 28px;
    margin: 14px 0;
}

.hero-card p {
    font-size: 16px;
    margin: 0;
}

.stats {
    max-width: 1180px;
    margin: -55px auto 70px;
    position: relative;
    z-index: 4;
    background: white;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.stats div {
    padding: 32px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.stats div:last-child {
    border-right: none;
}

.stats strong {
    display: block;
    font-size: 34px;
    color: #0f766e;
    margin-bottom: 6px;
}

.stats span {
    color: #64748b;
    font-weight: 600;
}

.section,
.advantages-section,
.contacts-section,
.countries-section {
    padding: 90px 60px;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-head h2 {
    font-size: 46px;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.section-head p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
}

.premium-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-card{

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:30px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.premium-card:hover{

    transform:translateY(-12px);

    box-shadow:0 45px 90px rgba(0,0,0,.18);

}

.premium-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.premium-card-content {
    padding: 28px;
}

.premium-card-content span {
    color: #0f766e;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.premium-card-content h3 {
    font-size: 30px;
    margin: 10px 0;
}

.premium-card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 22px;
}

.premium-card-content button,
.contact-panel button {
    border: none;
    padding: 13px 22px;
    border-radius: 999px;
    background: #0f766e;
    color: white;
    cursor: pointer;
    font-weight: 800;
}

.countries-section {
    background: #0f172a;
}

.section-head.light h2 {
    color: white;
}

.country-list {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.country-list div {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    color: white;
    text-align: center;
    font-size: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s;
}

.country-list div:hover {
    transform: scale(1.04);
    background: rgba(255,255,255,0.14);
}

.advantages-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: white;
    padding: 34px;
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.advantage-card h3 {
    color: #0f766e;
    font-size: 24px;
    margin-bottom: 14px;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}

.contacts-section {
    background: #111827;
    color: white;
}

.contacts-content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.contacts-content h2 {
    font-size: 46px;
    margin-bottom: 18px;
}

.contacts-content p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.6;
}

.contacts-info {
    margin-top: 24px;
}

.contact-panel {
    background: white;
    color: #0f172a;
    padding: 36px;
    border-radius: 34px;
}

.contact-panel h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #0f766e;
}

.contact-panel p {
    color: #64748b;
    margin-bottom: 24px;
}

.chat-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 380px;
    height: 540px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
}

.chat-header {
    padding: 18px;
    background: #0f766e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
}

.bot-message {
    background: #e0f2f1;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.user-message {
    background: #0f766e;
    color: white;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    margin-left: 50px;
    line-height: 1.5;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid #e5e7eb;
}

.chat-input input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 13px 16px;
}

.chat-input button {
    width: 46px;
    border: none;
    border-radius: 50%;
    background: #0f766e;
    color: white;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-header {
        width: calc(100% - 24px);
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero {
        padding: 170px 24px 70px;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-card {
        width: 100%;
    }

    .stats,
    .premium-grid,
    .country-list,
    .advantages-grid,
    .contacts-content {
        grid-template-columns: 1fr;
    }

    .stats {
        margin: 20px 18px 40px;
    }

    .stats div {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .section,
    .advantages-section,
    .contacts-section,
    .countries-section {
        padding: 65px 24px;
    }

    .section-head h2,
    .contacts-content h2 {
        font-size: 34px;
    }

    .chat-widget {
        width: 92%;
        right: 4%;
        bottom: 18px;
    }
}

.country-list div {
    cursor: pointer;
}

.country-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.country-modal-content {
    width: min(720px, 100%);
    background: white;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.35);
    animation: modalFade 0.35s ease;
}

.country-modal-content > button:first-child {
    position: absolute;
    right: 18px;
    top: 14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}

.country-modal-content img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.country-modal-content h3 {
    font-size: 34px;
    padding: 26px 30px 8px;
    color: #0f766e;
}

.country-modal-content p {
    padding: 0 30px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.5;
}

.modal-chat-btn {
    margin: 24px 30px 30px;
    padding: 14px 24px;
    border: none;
    border-radius: 999px;
    background: #0f766e;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.country-cards {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.country-card {
    min-height: 170px;
    padding: 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: #0f172a;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.7);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 85px rgba(15, 23, 42, 0.18);
}

.country-card img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.8);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.country-card h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.country-card p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 10px;
}

.country-card span {
    color: #0f766e;
    font-weight: 900;
}

.country-card.turkey {
    background: linear-gradient(135deg, #e7fbf8, #ffffff);
}

.country-card.egypt {
    background: linear-gradient(135deg, #fff3dc, #ffffff);
}

.country-card.uae {
    background: linear-gradient(135deg, #fff8e8, #ffffff);
}

.country-card.thailand {
    background: linear-gradient(135deg, #ecfdf3, #ffffff);
}

.country-card.maldives {
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
}

.country-card.greece {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
}

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

.advantages-premium {
    position: relative;
    padding: 110px 60px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 118, 110, 0.60)),
        url("/static/images/why-us.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.advantages-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.advantages-premium .section-head p {
    color: #dbeafe;
}

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

.adv-premium-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    transition: 0.35s ease;
}

.adv-premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.22);
}

.adv-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(94, 234, 212, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.adv-premium-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.adv-premium-card p {
    color: #e2e8f0;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .advantages-premium {
        padding: 70px 24px;
    }

    .advantages-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== Блок туров ====== */

.tours-section{
    position: relative;
    padding:120px 0;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("/static/images/destinations-bg.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.tour-slider-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.tour-slider {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 45px;
}

.tour-slider::-webkit-scrollbar {
    height: 8px;
}

.tour-slider::-webkit-scrollbar-thumb {
    background: rgba(15, 118, 110, 0.4);
    border-radius: 20px;
}

.slider-tour-card {
    min-width: 390px;
    height: 540px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
    transition: 0.4s ease;
    background: #111827;
}

.slider-tour-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.slider-tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-tour-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.slider-tour-info span {
    color: #0f766e;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.slider-tour-info h3 {
    font-size: 30px;
    margin: 8px 0;
    color: #0f172a;
}

.slider-tour-info p {
    color: #475569;
    line-height: 1.45;
    margin-bottom: 14px;
    max-height: 70px;
    overflow: hidden;
}

.slider-tour-info button {
    border: none;
    padding: 13px 22px;
    border-radius: 999px;
    background: #0f766e;
    color: white;
    cursor: pointer;
    font-weight: 800;
}

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 14px 40px rgba(15,23,42,0.18);
    font-size: 38px;
    color: #0f766e;
    cursor: pointer;
}

.slider-btn.left {
    left: -10px;
}

.slider-btn.right {
    right: -10px;
}

@media (max-width: 700px) {
    .slider-tour-card {
        min-width: 82vw;
        height: 500px;
    }

    .slider-btn {
        display: none;
    }
}

.contacts-luxury {
    position: relative;
    padding: 120px 60px;
    background: linear-gradient(135deg, #06111f, #0f766e);
    overflow: hidden;
}

.contacts-luxury::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(94, 234, 212, 0.22), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.16), transparent 32%);
    opacity: 0.9;
}

.contacts-luxury-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.contacts-luxury-left {
    color: white;
}

.contacts-luxury-left span {
    display: inline-block;
    margin-bottom: 18px;
    color: #5eead4;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 14px;
}

.contacts-luxury-left h2 {
    max-width: 680px;
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 26px;
}

.contacts-luxury-left p {
    max-width: 620px;
    color: #dbeafe;
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 44px;
}

.luxury-contact-list {
    display: grid;
    gap: 20px;
}

.luxury-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.luxury-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eead4;
    font-size: 28px;
    font-weight: 900;
}

.luxury-contact-item small {
    display: block;
    color: #a7f3d0;
    margin-bottom: 4px;
    font-size: 14px;
}

.luxury-contact-item strong {
    font-size: 22px;
    color: white;
}

.luxury-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 46px;
}

.luxury-contact-buttons button,
.luxury-contact-buttons a {
    padding: 18px 30px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.luxury-contact-buttons button {
    border: none;
    background: #5eead4;
    color: #06251f;
    box-shadow: 0 18px 45px rgba(94, 234, 212, 0.3);
}

.luxury-contact-buttons a {
    border: 1px solid rgba(255,255,255,0.45);
    color: white;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
}

.contacts-luxury-right {
    height: 560px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 40px 110px rgba(0,0,0,0.35);
}

.contacts-luxury-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.09);
    }
}

@media (max-width: 980px) {
    .contacts-luxury {
        padding: 80px 24px;
    }

    .contacts-luxury-content {
        grid-template-columns: 1fr;
    }

    .contacts-luxury-left h2 {
        font-size: 40px;
    }

    .contacts-luxury-right {
        height: 380px;
    }
}

.manager-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(12px);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}

.manager-window{

    width:460px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(30px);

    border-radius:34px;

    padding:45px;

    position:relative;

    box-shadow:0 35px 80px rgba(0,0,0,.25);

}

.close-manager{

    position:absolute;

    top:18px;

    right:22px;

    border:none;

    background:none;

    font-size:34px;

    cursor:pointer;

}

.manager-label{

    color:#14b8a6;

    letter-spacing:3px;

    font-size:13px;

    font-weight:800;

}

.manager-window h2{

    margin:15px 0;

    font-size:38px;

}

.manager-window p{

    color:#64748b;

    margin-bottom:35px;

}

.manager-item{

    display:flex;

    align-items:center;

    gap:18px;

    text-decoration:none;

    padding:18px;

    border-radius:20px;

    margin-bottom:16px;

    background:#f8fafc;

    transition:.3s;

}

.manager-item:hover{

    transform:translateY(-3px);

    background:#ecfeff;

}

.manager-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    background:#0f766e;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

/* ==========================
   ОКНО "Связаться с менеджером"
========================== */

.manager-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(12px);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}

.manager-window{

    width:460px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(30px);

    border-radius:34px;

    padding:45px;

    position:relative;

    box-shadow:0 35px 80px rgba(0,0,0,.25);

}

.close-manager{

    position:absolute;

    top:18px;

    right:22px;

    border:none;

    background:none;

    font-size:34px;

    cursor:pointer;

    color:#0f172a;

}

.manager-label{

    color:#14b8a6;

    letter-spacing:3px;

    font-size:13px;

    font-weight:800;

}

.manager-window h2{

    margin:15px 0;

    font-size:38px;

    color:#0f172a;

}

.manager-window p{

    color:#64748b;

    margin-bottom:35px;

}

.manager-item{

    display:flex;

    align-items:center;

    gap:18px;

    text-decoration:none;

    padding:18px;

    border-radius:20px;

    margin-bottom:16px;

    background:#f8fafc;

    transition:.3s;

}

.manager-item:hover{

    transform:translateY(-4px);

    background:#ecfeff;

}

.manager-item strong{

    display:block;

    color:#0f172a;

    font-size:18px;

}

.manager-item small{

    color:#64748b;

}

.manager-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    background:#0f766e;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}