:root {
    --primary-pink: #E6007E;
    --primary-teal: #0096AF;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.header {
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-teal);
    position: relative;
    letter-spacing: -1px;
}

.logo__circle::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-pink);
    border-right-color: var(--primary-pink);
    transform: rotate(-15deg);
}

.logo__text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.1;
    margin-left: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav__link {
    text-decoration: none;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 13px;
    transition: opacity 0.3s;
}

.nav__link:hover {
    opacity: 0.7;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    color: var(--primary-pink);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
}

.social-icons a {
    color: var(--primary-pink);
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    padding-top: 80px;
}

.hero__slider {
    height: 100%;
}

.hero__slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    backdrop-filter: blur(2px);
    /* Add a touch of blur */
}

.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    /* Subtle overlay to make text pop */
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero__title {
    font-size: 84px;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 0.85;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero__subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn--primary {
    background: var(--primary-teal);
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 151, 167, 0.4);
}

/* Hero UI Elements */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

.hero__arrow--prev {
    left: 0;
}

.hero__arrow--next {
    right: 0;
}

.hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s;
}

.dot.active {
    opacity: 1;
    background: var(--primary-teal);
}

/* Responsive */
/* Turns Section */
.turns {
    padding: 120px 0;
    background: #fff;
}

.turns__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.turns__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.turns__icon {
    font-size: 80px;
    color: var(--primary-teal);
    position: relative;
    line-height: 1;
}

.turns__icon-overlay {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 4px solid var(--primary-teal);
}

.turns__text {
    display: flex;
    flex-direction: column;
}

.turns__title {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 0.9;
    margin: 0;
}

.turns__subtitle {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin: 0;
}

.turns__subtitle i {
    font-size: 20px;
    margin-left: 5px;
}

.turns__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.turns__actions .btn {
    padding: 12px 40px;
    font-size: 16px;
    text-align: center;
    min-width: 180px;
}

@media (max-width: 768px) {
    .nav__list {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 24px;
    }

    .turns__container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .turns__content {
        flex-direction: column;
    }

    .turns__title {
        font-size: 48px;
    }

    .turns__subtitle {
        font-size: 22px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-pink) 100%);
    text-align: center;
    color: #fff;
}

.benefits__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.benefits__subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 60px;
    opacity: 0.9;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    background: #000;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.benefit-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    text-align: center;
}

.benefit-card__content p {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits__title {
        font-size: 36px;
    }

    .benefits__subtitle {
        font-size: 18px;
    }
}

/* Footer Design */
.footer {
    background: #fdfdfd;
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
    color: #888;
    font-size: 14px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__version {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    color: var(--primary-teal);
}

.flag-wrapper {
    display: flex;
    align-items: center;
}

.flag-img {
    height: 20px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer__right {
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.footer__right span {
    color: var(--primary-pink);
}

@media (max-width: 576px) {
    .footer__container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer {
        padding: 30px 0;
    }
}