/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap');

:root {
    --color-primary-yellow: #ffbf00;
    --color-primary-green: #32936f;
    --color-accent-pink: #e83f6f;
    --color-secondary-blue: #2274a5;
    --color-secondary-dark: #2c302e;
    --color-secondary-light: #CDCFD4;
    --color-secondary-orange: #d77333;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-secondary-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary-blue);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    text-align: justify;
    margin-bottom: 15px;
}

/* Typography */
.text-highlight {
    color: var(--color-primary-green);
}
.text-accent {
    color: var(--color-accent-pink);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 1.5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(50, 147, 111, 0.3);
}

.btn-primary:hover {
    background-color: #267356;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 147, 111, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary-yellow);
    color: var(--color-secondary-dark);
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 191, 0, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary-dark);
}

.logo span {
    color: var(--color-accent-pink);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-yellow);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-secondary-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-secondary-light) 100%);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.brand-shape {
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
}

.shape-yellow { top: -2%; right: -2%; width: 600px; } /* Top right */
.shape-green { bottom: -2%; left: -2%; width: 550px; } /* Bottom left */
.shape-blue { top: 15%; left: -5%; width: 400px; } /* Left */
.shape-blue-low { top: 30%; left: -5%; width: 400px; } /* Left, lower down */
.shape-blue-right { top: 60%; right: -5%; width: 400px; } /* Right, lower down */
.shape-orange { top: 60%; left: -8%; width: 400px; } /* Left */
.shape-orange-top-left { top: 15%; left: -5%; width: 400px; } /* Left, top */
.shape-orange-right { top: 60%; right: -5%; width: 400px; } /* Right */
.shape-pink { top: 20%; right: -8%; width: 525px; } /* Right */

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.0rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-secondary-dark);
}

.hero-title-top {
    display: block;
    text-align: left;
}

.hero-title-bottom {
    display: block;
    text-align: justify;
    text-justify: inter-word;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.hero-quote {
    font-style: italic;
    border-left: 4px solid var(--color-accent-pink);
    padding-left: 1rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--color-secondary-blue);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary-yellow);
    border-radius: 20px;
    z-index: 0;
}

/* About Section */
.about {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0 auto 1rem auto;
    max-width: 900px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
}

.about-intro h3 {
    margin-bottom: 0.3rem;
}

.about-intro p {
    margin-bottom: 0.5rem;
}

.certifications {
    padding: 1.2rem;
    background-color: #f9f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary-green);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certifications ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.certifications li {
    margin-bottom: 0.3rem;
}

.logos-container-full {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    clear: both;
}

.logos-container-full img {
    height: 60px;
    object-fit: contain;
}

/* Expertise Section */
.expertise {
    background-color: var(--color-secondary-light);
    background: linear-gradient(to bottom, #ffffff, var(--color-secondary-light));
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.section-header p {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
}

/* Expertises Zig-Zag Layout */
.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.zigzag-row:hover .zigzag-image img {
    transform: scale(1.05);
}

.zigzag-text {
    flex: 1.2;
}

.zigzag-text h3 {
    font-size: 2rem;
    color: var(--color-secondary-blue);
    margin-bottom: 1.5rem;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.clean-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    display: grid;
    grid-template-columns: 30px 1fr 2fr;
    gap: 10px;
    align-items: start;
}

.clean-list .icon {
    font-size: 1.2rem;
    line-height: 1.5;
}

.clean-list .list-title {
    line-height: 1.5;
}

.clean-list .list-desc {
    line-height: 1.5;
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    display: block;
}

@media (max-width: 900px) {
    .clean-list li {
        grid-template-columns: 30px 1fr;
        gap: 5px 10px;
    }
    .clean-list .list-desc {
        grid-column: 2 / -1;
    }
}

.quote-text {
    font-style: italic;
    color: var(--color-secondary-dark);
    border-left: 4px solid var(--color-primary-green);
    padding-left: 1rem;
    margin-top: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .zigzag-row, .zigzag-row.reverse {
        flex-direction: column;
        padding: 1.5rem;
    }
    .zigzag-image {
        order: 1;
    }
    .zigzag-text {
        order: 2;
    }
}

/* Trainings Bento Grid */
.trainings {
    background-color: #f9f9fa;
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    position: relative;
    overflow: hidden;
}

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

.bento-green { background-color: #e6f4ed; border: 2px solid #bce2cf; }
.bento-pink { background-color: #fce8ed; border: 2px solid #f6c8d4; }
.bento-yellow { background-color: #fff8e1; border: 2px solid #ffe8a1; }
.bento-full { 
    grid-column: 1 / -1;
    padding: 1.5rem 2.5rem;
    background-color: #f0f5f9;
    border: 2px solid #e1e8ef;
    color: var(--color-secondary-dark);
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-secondary-dark);
}

.bento-full-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bento-full-title-group {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.bento-full h3 {
    color: var(--color-secondary-dark);
    font-size: 1.5rem;
    margin: 0;
}

.bento-full .bento-badge {
    margin: 0;
}

.bento-full-note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
}

.bento-badge {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(0,0,0,0.05);
    border-radius: 20px;
    color: var(--color-secondary-dark);
    width: fit-content;
}

.bento-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.bento-highlight {
    font-weight: 600;
    color: var(--color-primary-green);
    margin-top: auto;
    margin-bottom: 0;
    flex-grow: 0 !important;
    text-align: left;
}

.bento-grid > .bento-card:not(.bento-full) .bento-highlight {
    min-height: 3.2rem;
    display: flex;
    align-items: flex-end;
}

.bento-content-split {
    display: flex;
    gap: 1.5rem;
}

.bento-left, .bento-right {
    flex: 1;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.bento-left p, .bento-right p {
    margin-bottom: 0;
}

.bento-icon {
    font-size: 1.8rem;
    margin: 0;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-content-split {
        flex-direction: column;
    }
}



/* Contact Section */
.contact {
    background-color: var(--color-secondary-dark);
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.contact-text h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    color: #CDCFD4;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-yellow);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--color-primary-green);
}

.contact-form {
    width: 100%;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-secondary-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-secondary-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary-blue);
    box-shadow: 0 0 0 3px rgba(34, 116, 165, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: #1a1c1b;
    color: var(--color-secondary-light);
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-quote {
        text-align: left;
    }
    
    .about-image {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .hero-title-top,
    .hero-title-bottom {
        text-align: left;
        text-justify: auto;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-text {
        text-align: center;
    }
    .contact-info {
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    .certifications {
        order: 2;
    }
    .about-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    .logos-container-full {
        gap: 1.5rem;
    }
}

/* Language Toggle */
.lang-toggle {
    margin-left: 2rem;
    font-weight: 500;
    font-size: 1rem;
}
.lang-toggle a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
.lang-toggle a:hover {
    color: var(--color-primary-green);
}
.lang-toggle a.active {
    font-weight: 700;
    color: var(--color-primary-green);
}
@media (max-width: 768px) {
    .lang-toggle {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary-yellow);
    color: var(--color-secondary-dark);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-accent-pink);
    color: var(--color-secondary-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px; /* Accounts for mobile browser UI */
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
