/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #F48FB1;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: #F8BBD0;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: #F48FB1;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 0px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E9 100%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

.hero-content {
    text-align: left;
    padding-bottom: 40px;
    align-self: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(244, 143, 177, 0.2));
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #EC407A;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F48FB1;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
}

.cta-primary:hover {
    background: #EC407A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #F48FB1;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #F48FB1;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #F48FB1;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 0;
    border-radius: 16px;
    background: #FFF5F7;
    transition: all 0.3s ease;
    border: 1px solid #FCE4EC;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 24px;
}

.service-card-content {
    padding: 0 24px 40px 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* HR Solutions Section */
.hr-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EBF0 100%);
}

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

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.hr-service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hr-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #CBD5E0;
}

.hr-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.hr-service-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.hr-service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-service-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    min-height: 45px;
}

.hr-cta-container {
    text-align: center;
    margin-top: 48px;
}

.hr-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hr-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.hr-cta i {
    width: 20px;
    height: 20px;
}

/* HR Benefits & Methodology Section */
.hr-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #F0F4F8 100%);
    position: relative;
}

.hr-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CBD5E0, transparent);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Methodology Section */
.methodology-section {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-title {
    font-size: 36px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 16px;
}

.methodology-subtitle {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.methodology-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.step-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.methodology-cta {
    text-align: center;
}

.method-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.method-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(72, 187, 120, 0.4);
}

.method-cta i {
    width: 20px;
    height: 20px;
}

/* Workshops Card Details */
.workshops-card {
    position: relative;
}

.workshops-details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #FCE4EC;
    text-align: left;
}

.workshops-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.workshops-info {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.workshop-structure-compact h5,
.monthly-themes-compact h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.structure-items,
.themes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.structure-item,
.theme-item {
    background: #FFF5F7;
    border: 1px solid #FCE4EC;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    color: #2d3748;
    transition: all 0.2s ease;
}

.structure-item:hover,
.theme-item:hover {
    background: #F8BBD0;
    color: white;
    transform: translateY(-1px);
}

.workshop-cta-compact {
    margin-top: 20px;
    text-align: center;
}

.workshop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(244, 143, 177, 0.3);
}

.workshop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.4);
}

.workshop-btn i {
    width: 16px;
    height: 16px;
}

/* Workshop Options */
.workshop-options {
    margin-top: 20px;
}

.workshop-option-item {
    background: #FAFAFA;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-option-item:hover {
    background: #F7FAFC;
    border-color: #FCE4EC;
    box-shadow: 0 2px 8px rgba(244, 143, 177, 0.1);
}

.workshop-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-weight: 600;
    color: #2d3748;
}

.workshop-option-header i:first-child {
    color: #F48FB1;
    width: 20px;
    height: 20px;
}

.expand-icon {
    margin-left: auto;
    color: #A0AEC0;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.workshop-option-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.workshop-option-description {
    padding: 0 16px 16px 48px;
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.workshop-details {
    margin-top: 20px;
    padding: 20px;
    background: #FCFCFC;
    border: 1px solid #FCE4EC;
    border-radius: 12px;
    text-align: left;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-qualities {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.quality-item i {
    width: 20px;
    height: 20px;
    color: #F48FB1;
}

.quality-item span {
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 15px 35px rgba(244, 143, 177, 0.2));
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFEDF0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FCE4EC;
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(244, 143, 177, 0.2);
    border-color: #F8BBD0;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F8BBD0 0%, #F48FB1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.quote-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #EC407A;
    font-weight: 600;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

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

.contact-title {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-description {
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-item i {
    width: 16px;
    height: 16px;
    color: #F48FB1;
}

.contact-item a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #F48FB1;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #F48FB1;
}

.footer-copyright {
    font-size: 14px;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 16px;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 0px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        min-height: 350px;
    }
    
    .hero-content {
        text-align: center;
        padding-bottom: 20px;
    }
    
    .hero-image {
        order: -1;
        align-items: flex-end;
    }
    
    .hero-image img {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-cta-group .cta-primary,
    .hero-cta-group .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hr-solutions {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .hr-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hr-service-card {
        padding: 32px 24px;
    }
    
    .hr-service-title {
        font-size: 18px;
        min-height: auto;
    }
    
    .hr-service-description {
        font-size: 14px;
        min-height: auto;
    }
    
    .hr-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* HR Benefits & Methodology Section - Responsive */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .benefit-card {
        padding: 24px 16px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon i {
        width: 20px;
        height: 20px;
    }
    
    .benefit-title {
        font-size: 14px;
        min-height: 35px;
    }
    
    .benefit-value {
        font-size: 28px;
    }
    
    .methodology-section {
        padding: 40px 24px;
    }
    
    .methodology-title {
        font-size: 28px;
    }
    
    .methodology-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .method-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 250px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .testimonial {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonial-item {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 30px 16px;
    }
    
    .testimonial-item {
        padding: 24px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 24px;
    }
}
