:root {
    --c-primary: #ab2145;
    --c-primary-hover: #961d3d;
    --c-secondary-1: #d2694f;
    --c-secondary-2: #f4a261;
    --c-tertiary: #9abf9e;
    --bg-main: #FAF6F3;
    --text-main: #333333;
    --text-light: #666666;

    --white: #ffffff;
    --gray-light: #eaddd3;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(171, 33, 69, 0.15);

    --gradient-brand: linear-gradient(135deg, #f4a261, #ab2145);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-pill: 9999px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 80px 0;
}

.pt-0 {
    padding-top: 0;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-red {
    color: var(--c-primary);
}

.bg-light {
    background-color: var(--bg-main);
}

.full-width {
    width: 100%;
    display: block;
}

.color-red {
    color: var(--c-primary);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.section-title {
    text-align: center;
    color: var(--c-primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    z-index: 100;
    transition: var(--transition);
}

.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--c-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(171, 33, 69, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(171, 33, 69, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--c-primary);
}

.btn-outline-red {
    background: transparent;
    border: 1px solid var(--c-primary);
    color: var(--c-primary);
    border-radius: var(--radius-pill);
}

.btn-outline-red:hover {
    background: var(--c-primary);
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.hero-container {
    z-index: 10;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(171, 33, 69, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-wrap {
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    color: var(--c-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Values section */
.values-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.values-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.img-stack {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
    object-fit: cover;
}

.img-1 {
    width: 250px;
    height: 300px;
    left: 0;
    top: 0;
    z-index: 1;
    transform: rotate(-5deg);
}

.img-2 {
    width: 280px;
    height: 320px;
    left: 100px;
    top: 30px;
    z-index: 2;
}

.img-3 {
    width: 220px;
    height: 260px;
    right: 0;
    bottom: 0;
    z-index: 3;
    transform: rotate(5deg);
}

.values-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-row {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.value-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.value-row p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Find club */
.find-club-grid {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.map-container {
    flex: 1.5;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-md);
}

.map-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.map-stats strong {
    color: var(--c-primary);
    font-size: 1.1rem;
}

.clubs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.club-card {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    background: #fafafa;
}

.club-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.club-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.club-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Testimonials */
.badge {
    background: #fdeaea;
    color: var(--c-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.testimonial-card {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.testimonial-author {
    flex: 0 0 200px;
    text-align: center;
    border-right: 1px solid var(--gray-light);
    padding-right: 2rem;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-details p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-quote p:first-child {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.quote-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-nav .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-nav .dot.active {
    background: var(--c-primary);
}

/* Bottom CTA */
.cta-banner {
    background: var(--gradient-brand);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--c-primary);
}

.footer-ul {
    list-style: none;
}

.footer-ul li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-ul a:hover {
    color: var(--c-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--gray-light);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {

    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-flex {
        flex-direction: column;
    }

    .values-images {
        height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .find-club-grid {
        flex-direction: column;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .testimonial-author {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 120px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-dropdown a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background: #f5f5f5;
    color: var(--c-primary);
}

/* Country Links */
.country-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.country-link:hover .country-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}