/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    background: none;
}

.btn-primary {
    background-color: #4a9b8e;
    color: white;
}

.btn-primary:hover {
    background-color: #3d8276;
    transform: translateY(-2px);
}

.btn-light {
    background-color: #f8f9fa;
    color: #333;
}

.btn-light:hover {
    background-color: #e9ecef;
}

.btn-outline {
    background-color: transparent;
    color: #4a9b8e;
    border: 2px solid #4a9b8e;
}

.btn-outline:hover {
    background-color: #4a9b8e;
    color: white;
}

.btn-full {
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    background-color: #2d5a54;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px;
    color: white;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    min-width: 200px;
    justify-content: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a9b8e;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4a9b8e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../assets/i6.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== STRATEGIC SECTION ===== */
.strategic-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.strategic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strategic-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.strategic-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.strategic-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== CHALLENGES SECTION ===== */
.challenges-section {
    padding: 100px 0;
    background-color: white;
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.challenge-image img,
.consultancy-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.challenge-text h3,
.consultancy-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.challenge-text p,
.consultancy-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.challenge-text ul,
.consultancy-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.challenge-text li,
.consultancy-text li {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.challenge-text li::before,
.consultancy-text li::before {
    content: "•";
    color: #4a9b8e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.consultancy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== PERSPECTIVES SECTION ===== */
.perspectives-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.perspectives-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.perspective-image img,
.voices-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.perspective-text h3,
.voices-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.perspective-text p,
.voices-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.perspective-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.perspective-text li {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.perspective-text li::before {
    content: "•";
    color: #4a9b8e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.voices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== KNOWLEDGE SECTION ===== */
.knowledge-section {
    padding: 100px 0;
    background-color: white;
}

.formation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.formation-image img,
.strategic-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.formation-text h3,
.strategic-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.formation-text p,
.strategic-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.formation-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.formation-text li {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.formation-text li::before {
    content: "•";
    color: #4a9b8e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.strategic-thinking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.resources-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resources-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.resources-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ===== CASES SECTION ===== */
.cases-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.cases-section .section-subtitle {
    margin-bottom: 2rem;
    text-align: left;
}

.cases-section p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
}

.cases-section .btn {
    margin-top: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 3rem;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9b8e;
}

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

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a9b8e;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2d5a54;
    color: white;
    padding: 40px 0;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9b8e;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #b8d4d1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {

    .strategic-content,
    .challenges-content,
    .consultancy-content,
    .perspectives-content,
    .voices-content,
    .formation-content,
    .strategic-thinking-content,
    .resources-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .strategic-text h2,
    .challenge-text h3,
    .consultancy-text h3,
    .perspective-text h3,
    .voices-text h3,
    .formation-text h3,
    .strategic-text h3,
    .resources-text h3 {
        font-size: 1.8rem;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .cookie-content h3 {
        font-size: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .strategic-section,
    .challenges-section,
    .perspectives-section,
    .knowledge-section,
    .resources-section,
    .cases-section,
    .contact-section {
        padding: 60px 0;
    }

    .strategic-content,
    .challenges-content,
    .consultancy-content,
    .perspectives-content,
    .voices-content,
    .formation-content,
    .strategic-thinking-content,
    .resources-content {
        gap: 30px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* ===== ADDITIONAL HOVER EFFECTS ===== */
.strategic-image img:hover,
.challenge-image img:hover,
.consultancy-image img:hover,
.perspective-image img:hover,
.voices-image img:hover,
.formation-image img:hover,
.resources-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a9b8e, #2d5a54);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 0;
}

.text-section h2 {
    font-family: Lora;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #18133F;
}

.text-section p {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #6F6F6F;
}