@font-face {
    font-family: 'Meutas Black';
    src: local('Meutas Black'), local('Meutas-Black'),
        url('../fonts/Meutas-Black.woff2') format('woff2'),
        url('../fonts/Meutas-Black.woff') format('woff'),
        url('../fonts/Meutas-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --brand-cyan-main: #19C7EE;
    --brand-cyan-light: #63E7F5;
    --brand-cyan-deep: #0FA8D3;
    --brand-cyan-titles: #176278;

    --bg-page: #F7FDFF;
    --bg-section: #EFFBFF;
    --bg-surface: #FFFFFF;
    --bg-soft-card: #F2FCFF;
    --bg-accent-wash: linear-gradient(135deg, rgba(25, 199, 238, 0.10) 0%, rgba(99, 231, 245, 0.16) 100%);

    --text-main: #06242D;
    --text-strong: #24505C;
    --text-soft: #4D6C76;
    --text-on-accent: #FFFFFF;

    --border-soft: rgba(15, 168, 211, 0.14);
    --border-strong: rgba(15, 168, 211, 0.24);
    --shadow-soft: rgba(13, 79, 98, 0.08);
    --shadow-medium: rgba(13, 79, 98, 0.14);
    --shadow-glow: rgba(25, 199, 238, 0.18);
}

/* Full reset styles for modern websites */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: linear-gradient(180deg, #F9FEFF 0%, #F4FCFF 45%, #EEF9FD 100%);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(15, 168, 211, 0.12);
    box-shadow: 0 8px 24px rgba(13, 79, 98, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 35px;
    flex-shrink: 0;
}

header .nav-menu {
    display: flex;
    gap: 20px;
}

header .nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-menu ul li a {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-strong);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

header .nav-menu ul li a:hover {
    color: var(--brand-cyan-deep);
    text-shadow: 0 0 10px rgba(25, 199, 238, 0.18);
}

header .btn-login {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: var(--brand-cyan-deep);
    border: 2px solid var(--brand-cyan-main);
    padding: 5px 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 rgba(25, 199, 238, 0);
}

header .btn-login:hover {
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-light) 100%);
    color: var(--text-on-accent);
    box-shadow: 0 10px 25px rgba(25, 199, 238, 0.20);
}

@media (max-width: 768px) {
    header {
        display: none;
    }
    header .nav-menu {
        display: none;
    }

    header .btn-login {
        margin-left: auto;
    }

    header .container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }

    header .btn-login {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 18% 22%, rgba(99, 231, 245, 0.36) 0%, rgba(99, 231, 245, 0) 28%),
        radial-gradient(circle at 82% 18%, rgba(25, 199, 238, 0.24) 0%, rgba(25, 199, 238, 0) 26%),
        linear-gradient(180deg, #F8FEFF 0%, #F0FBFF 55%, #EAF8FD 100%);
    padding: 80px 20px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    color: var(--text-main);
    z-index: 10;
    position: relative;
}

.hero-diamond {
    display: block;
    margin: 0 auto;
    max-width: 330px;
}

.hero-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1A3B46;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9), 0 0 20px rgba(25, 199, 238, 0.12);
    -webkit-text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9), 0 0 20px rgba(25, 199, 238, 0.12);
}

.hero-title span {
    background: linear-gradient(135deg, var(--brand-cyan-main), var(--brand-cyan-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: none;
    -webkit-text-shadow: none;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
}

.feature {
    font-family: 'Work Sans', sans-serif;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    color: var(--text-main);
    font-size: 1rem;
    width: 220px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 28px var(--shadow-soft);
    transition: all 0.3s ease;
    animation: glow 6s ease-in-out infinite;
    cursor: default;
}

.feature:hover {
    background: linear-gradient(135deg, rgba(25, 199, 238, 0.95), rgba(99, 231, 245, 0.95));
    border-color: var(--border-strong);
    color: var(--text-on-accent);
    box-shadow: 0 16px 32px rgba(25, 199, 238, 0.22);
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(13, 79, 98, 0.08);
    }

    50% {
        box-shadow: 0 12px 34px rgba(25, 199, 238, 0.16);
    }
}

.hero-button {
    display: inline-block;
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-deep) 100%);
    box-shadow: 0 14px 30px rgba(25, 199, 238, 0.22);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.hero-button:hover {
    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--brand-cyan-deep) 0%, var(--brand-cyan-light) 100%);
    transform: scale(1.05);
    box-shadow: 0 18px 38px rgba(25, 199, 238, 0.28);
}

.dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: linear-gradient(45deg, rgba(25, 199, 238, 0.45), rgba(99, 231, 245, 0.5));
    filter: blur(110px);
    -webkit-filter: blur(110px);
    opacity: 0.72;
    animation: moveBlur 10s infinite ease-in-out;
}

.circle-top-left {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 5%;
}

.circle-bottom-right {
    width: 280px;
    height: 280px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.circle-center {
    width: 220px;
    height: 220px;
    top: 42%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes moveBlur {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(50px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@media (max-width: 768px) {
    .hero-diamond {
        max-width: 280px;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .feature {
        font-size: 0.9rem;
        padding: 10px;
        width: 100%;
        max-width: 360px;
    }

    .hero-button {
        font-size: 1.2rem;
    }

    .circle-top-left,
    .circle-bottom-right,
    .circle-center {
        width: 200px;
        height: 200px;
        filter: blur(80px);
        -webkit-filter: blur(80px);
    }
}

@media (max-width: 480px) {
    .hero-diamond {
        max-width: 227px;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-button {
        font-size: 1rem;
    }

    .circle-top-left,
    .circle-bottom-right,
    .circle-center {
        width: 150px;
        height: 150px;
        filter: blur(60px);
        -webkit-filter: blur(60px);
    }
}

/* About Section */
#about {
    padding: 60px 40px;
    background: var(--bg-page);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-container {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.about-content {
    margin: 0 auto;
}

.about-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brand-cyan-titles);
    text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
    -webkit-text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
    text-align: center;
}

.about-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-soft);
    text-align: justify;
}

.about-text span {
    color: var(--text-strong);
    text-shadow: 1px 1px 3px rgba(25, 199, 238, 0.16);
}

@media (max-width: 768px) {
    #about {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Statistics Section */
#statistics {
    padding: 60px 40px;
    background: linear-gradient(180deg, #F4FCFF 0%, #EBF9FD 100%);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stats-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.82);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 28px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 34px rgba(25, 199, 238, 0.16);
}

.stat-number {
    font-family: 'Meutas Black', sans-serif;
    font-size: 3rem;
    color: var(--brand-cyan-deep);
    text-shadow: 0 0 12px rgba(25, 199, 238, 0.12);
    -webkit-text-shadow: 0 0 12px rgba(25, 199, 238, 0.12);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Advantages Section */
#advantages {
    padding: 60px 40px;
    background: linear-gradient(120deg, #F8FEFF 0%, #EAF8FD 100%);
    color: var(--text-main);
    text-align: center;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-cyan-titles);
    margin-bottom: 40px;
    text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
}

.advantages-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.88);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 28px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.advantage-item:hover {
    transform: translateY(-10px);
    border-color: var(--border-strong);
    box-shadow: 0 18px 36px rgba(25, 199, 238, 0.16);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--brand-cyan-main);
    margin-bottom: 15px;
    transition: transform 0.5s ease, color 0.3s ease;
}

.advantage-item:hover .advantage-icon,
.advantage-icon:hover {
    color: var(--brand-cyan-deep);
    transform: scale(1.2);
}

.advantage-heading {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: var(--text-strong);
    margin-bottom: 10px;
}

.advantage-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2rem;
    }

    .advantages-list {
        gap: 20px;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .advantage-heading {
        font-size: 1.3rem;
    }

    .advantage-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .advantages-title {
        font-size: 1.8rem;
    }

    .advantage-icon {
        font-size: 2rem;
    }

    .advantage-heading {
        font-size: 1.2rem;
    }

    .advantage-text {
        font-size: 0.8rem;
    }
}

/* Vacancies Section */
#vacancies {
    padding: 60px 40px;
    background: var(--bg-section);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.vacancies-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancies-maintitle {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-cyan-titles);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
}

.vacancy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 28px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vacancy-card:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    border-color: var(--border-strong);
    box-shadow: 0 18px 36px rgba(25, 199, 238, 0.16);
}

.vacancy-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vacancy-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: var(--text-strong);
}

.vacancy-salary {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--brand-cyan-deep);
    font-weight: bold;
}

.vacancy-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: var(--brand-cyan-deep);
    padding: 10px 20px;
    border: 2px solid var(--brand-cyan-main);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    letter-spacing: 0.04em;
}

.vacancy-button:hover {
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-deep) 100%);
    color: var(--text-on-accent);
    box-shadow: 0 10px 24px rgba(25, 199, 238, 0.18);
}

@media (max-width: 768px) {
    .vacancies-maintitle {
        font-size: 2rem;
    }

    .vacancy-card {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .vacancy-title {
        font-size: 1.3rem;
    }

    .vacancy-salary {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .vacancies-maintitle {
        font-size: 1.8rem;
    }

    .vacancy-title {
        font-size: 1.2rem;
    }

    .vacancy-salary {
        font-size: 1.1rem;
    }

    .vacancy-button {
        font-size: 0.9rem;
        padding: 8px 15px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* reviews */
#reviews {
    padding: 60px 40px;
    background: linear-gradient(180deg, #F9FEFF 0%, #EFFBFF 100%);
    color: var(--text-main);
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-cyan-titles);
    margin-bottom: 40px;
    text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
}

.reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 16px 32px rgba(13, 79, 98, 0.08);
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    width: 100%;
}

.reviews-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 30px;
    color: var(--text-main);
    font-size: 16px;
    background: var(--bg-soft-card);
    border: 1px solid rgba(15, 168, 211, 0.10);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.55);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews-item img {
    max-width: 150px;
    margin: 0 auto 20px;
}

.reviews-item h3 {
    font-family: 'Meutas Black', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: var(--brand-cyan-deep);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.reviews-item p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.2;
}

.reviews-item p span {
    color: var(--text-strong);
    text-shadow: 1px 1px 3px rgba(25, 199, 238, 0.14);
}

.reviews-item p,
.reviews-item ul {
    margin: 10px 0;
}

.reviews-item ul {
    padding-left: 20px;
}

.reviews-item li {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.2;
    margin-bottom: 5px;
}

.reviews-prev,
.reviews-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-deep) 100%);
    color: var(--text-on-accent);
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    box-shadow: 0 8px 18px rgba(25, 199, 238, 0.18);
}

.reviews-prev:hover,
.reviews-next:hover {
    background: linear-gradient(135deg, var(--brand-cyan-deep) 0%, var(--brand-cyan-light) 100%);
}

.reviews-prev {
    left: 5px;
}

.reviews-next {
    right: 5px;
}

@media (max-width: 768px) {
    #reviews {
        padding: 40px 20px;
    }

    .reviews-prev,
    .reviews-next {
        display: none;
    }

    .reviews-item {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .reviews-carousel {
        width: 95%;
        padding: 15px;
    }

    .reviews-track {
        width: 100%;
    }

    .reviews-item {
        min-height: 180px;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .reviews-carousel {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .reviews-item {
        min-height: 160px;
        max-width: 100%;
    }
}

/* Contact Section */
#contact {
    padding: 60px 40px;
    background: var(--bg-section);
    color: var(--text-main);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2rem;
    color: var(--brand-cyan-deep);
    margin-bottom: 20px;
    text-shadow: 0 0 14px rgba(25, 199, 238, 0.12);
}

.contact-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--brand-cyan-deep);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-details a:hover {
    color: var(--brand-cyan-main);
    text-shadow: 0 0 10px rgba(25, 199, 238, 0.16);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.88);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 28px var(--shadow-soft);
}

.contact-form label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(15, 168, 211, 0.14);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: #FFFFFF;
    color: var(--text-main);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    box-shadow: inset 0 1px 2px rgba(13, 79, 98, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-cyan-main);
    box-shadow: 0 0 0 3px rgba(25, 199, 238, 0.10);
}

.contact-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.2rem;
    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-deep) 100%);
    box-shadow: 0 14px 30px rgba(25, 199, 238, 0.20);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.contact-button:hover {
    background: linear-gradient(135deg, var(--brand-cyan-deep) 0%, var(--brand-cyan-light) 100%);
    box-shadow: 0 18px 34px rgba(25, 199, 238, 0.24);
}

@media (max-width: 768px) {
    .contact-title {
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form-container {
        max-width: 100%;
    }

    .contact-details li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form-container {
        min-width: 100%;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-details {
        font-size: 0.9rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-button {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Footer Section */
#footer {
    background: linear-gradient(180deg, #EAF8FD 0%, #DFF5FB 100%);
    color: var(--text-main);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(15, 168, 211, 0.12);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-soft);
    margin: 0;
}

.footer-text span {
    color: var(--brand-cyan-deep);
}

@media (max-width: 768px) {
    #footer {
        padding: 15px 20px;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-text {
        font-size: 0.8rem;
    }
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 27, 34, 0.34);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #FFFFFF;
    color: var(--text-strong);
    padding: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(25, 199, 238, 0.16);
    box-shadow: 0 18px 42px rgba(13, 79, 98, 0.16);
    max-width: 400px;
    width: 90%;
}

.modal-content h2 {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2rem;
    color: var(--brand-cyan-deep);
    margin-bottom: 10px;
}

.modal-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.close-modal-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: var(--text-on-accent);
    background: linear-gradient(135deg, var(--brand-cyan-main) 0%, var(--brand-cyan-deep) 100%);
    box-shadow: 0 14px 30px rgba(25, 199, 238, 0.20);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.close-modal-button:hover {
    background: linear-gradient(135deg, var(--brand-cyan-deep) 0%, var(--brand-cyan-light) 100%);
    box-shadow: 0 18px 34px rgba(25, 199, 238, 0.24);
}