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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #1B4332;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

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

.nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: white;
    color: #2C5F2D;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1B4332 0%, #2C5F2D 40%, #68A357 70%, #EAB10B 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 96px;
    font-weight: 800;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 32px;
    color: white;
    margin-bottom: 48px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.hero-secondary-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-glass-small {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-glass-small:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Search Section */
.search-section {
    padding: 64px 24px;
    background: #F1F8F4;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.btn-search {
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(91, 95, 237, 0.3);
    transition: opacity 0.3s;
}

.btn-search:hover {
    opacity: 0.9;
}

/* Trainers Section */
.trainers-section {
    padding: 80px 24px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: #1B4332;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #52796F;
    max-width: 600px;
    margin: 0 auto;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.trainer-card {
    background: white;
    border: 2px solid #D8E9DC;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trainer-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.trainer-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(91, 95, 237, 0.3);
}

.trainer-info {
    flex: 1;
}

.trainer-name {
    font-size: 20px;
    font-weight: 800;
    color: #1B4332;
    margin-bottom: 8px;
}

.trainer-location {
    color: #52796F;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trainer-bio {
    font-size: 14px;
    color: #52796F;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trainer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(91, 95, 237, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    color: #2C5F2D;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.trainer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid #D8E9DC;
    margin-bottom: 24px;
}

.trainer-experience {
    display: flex;
    flex-direction: column;
}

.experience-years {
    font-size: 18px;
    font-weight: 800;
    color: #1B4332;
}

.experience-label {
    font-size: 12px;
    color: #52796F;
}

.trainer-rate {
    text-align: right;
}

.rate-amount {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.rate-label {
    font-size: 12px;
    color: #52796F;
}

.btn-trainer {
    width: 100%;
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(91, 95, 237, 0.3);
    transition: opacity 0.3s;
}

.btn-trainer:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1B4332;
    color: white;
    padding: 64px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2C5F2D 0%, #EAB10B 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(91, 95, 237, 0.3);
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
}

.footer-description {
    font-size: 14px;
    color: #A0AEC0;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #A0AEC0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-glass,
    .btn-glass-small {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
