/* 
* ExecuMentor - Business Coaching for Executives
* Main Stylesheet
* Version: 1.0
* Last Updated: 2026-01-27
*/


:root {
    --primary-color: #1E3A8A;
    --secondary-color: #F97316;
    --accent-color: #14B8A6;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --bg-color: #F3F4F6;
    --text-color: #111827;
    --highlight-color: #FBBF24;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Epilogue', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

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

section {
    padding: 80px 0;
}

.btn {
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #152c6a;
    border-color: #152c6a;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #e05f07;
    border-color: #e05f07;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subheading {
    font-size: 1.25rem;
    color: var(--dark-color);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}


.navbar {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link.cta-btn {
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    margin-left: 10px;
}

.navbar-nav .nav-link.cta-btn:hover {
    background-color: #e05f07;
    color: white;
}


.hero-section {
    padding: 160px 0 80px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-stats {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--dark-color);
    opacity: 0.8;
}


.benefits-section {
    background-color: var(--bg-color);
    position: relative;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card .icon-wrapper i {
    font-size: 30px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}


.programs-section {
    background-color: white;
}

.program-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    background-color: white;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-features {
    margin-top: 20px;
}

.program-features .feature {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.program-features .feature i {
    color: var(--secondary-color);
    margin-right: 10px;
}


.success-stories-section {
    background-color: var(--bg-color);
}

.success-story-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.story-image {
    height: 300px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.contact-form-section {
    background-color: white;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 15px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
}

.form-label {
    font-weight: 500;
}

.form-control {
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}


.iti {
    width: 100%;
}


.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-about img {
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
}


.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}


.about-story-section {
    padding: 100px 0;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-card .icon-wrapper i {
    font-size: 30px;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.methodology-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.methodology-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.methodology-step {
    margin-bottom: 25px;
}

.methodology-step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.methodology-step h4 span {
    color: var(--secondary-color);
    font-weight: 700;
}

.approach-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
}

.approach-card .card-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .value-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
}

.uniqueness-section {
    background-color: white;
    padding: 100px 0;
}

.uniqueness-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.uniqueness-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.uniqueness-feature {
    margin-bottom: 25px;
}

.uniqueness-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.uniqueness-feature h4 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}


.group-intro-section {
    padding: 100px 0;
}

.group-intro-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.group-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.group-benefits-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.group-programs-section {
    background-color: white;
    padding: 100px 0;
}

.process-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 3px;
    background-color: var(--primary-color);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.corporate-benefits-section {
    background-color: white;
    padding: 100px 0;
}

.corporate-benefits-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.corporate-benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.corporate-benefit {
    margin-bottom: 25px;
}

.corporate-benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.corporate-benefit h4 i {
    color: var(--secondary-color);
    margin-right: 10px;
}


.contact-info-section {
    padding: 100px 0 50px;
}

.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon-wrapper i {
    font-size: 30px;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-journey {
    margin-top: 40px;
}

.contact-journey h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.journey-step {
    display: flex;
    margin-bottom: 30px;
}

.journey-step .step-number {
    position: relative;
    top: auto;
    left: auto;
    margin-right: 20px;
    flex-shrink: 0;
}

.journey-step .step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.faq-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: white;
    color: var(--primary-color);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

.cta-button-section {
    padding: 80px 0;
    text-align: center;
}


.privacy-section, .terms-section, .cookies-section {
    padding: 100px 0;
}

.privacy-content, .terms-content, .cookies-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
}

.privacy-update, .terms-update, .cookies-update {
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
}

.privacy-intro, .terms-intro, .cookies-intro {
    margin-bottom: 40px;
}

.privacy-section-item, .terms-section-item, .cookies-section-item {
    margin-bottom: 40px;
}

.privacy-section-item h2, .terms-section-item h2, .cookies-section-item h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.privacy-section-item h3, .terms-section-item h3, .cookies-section-item h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.privacy-section-item ul, .terms-section-item ul, .cookies-section-item ul {
    margin-bottom: 20px;
}

.privacy-section-item li, .terms-section-item li, .cookies-section-item li {
    margin-bottom: 10px;
}

.table {
    margin: 20px 0 30px;
}

.table th {
    background-color: var(--primary-color);
    color: white;
}


.thanks-section {
    padding: 160px 0 80px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-section .lead {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.next-steps-section, .resources-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.next-step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    position: relative;
}

.next-step-card .step-number {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 20px;
}

.next-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.resource-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-card h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-content h4 {
    color: white;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-category {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
}


@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-content p {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .cookie-buttons {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-story-section, .group-intro-section, .methodology-section, 
    .uniqueness-section, .corporate-benefits-section {
        padding: 60px 0;
    }
    
    .about-image, .group-intro-image, .methodology-image, 
    .uniqueness-image, .corporate-benefits-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-link.cta-btn {
        margin: 10px 0 0;
        display: inline-block;
    }
    
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content, .terms-content, .cookies-content {
        padding: 30px 20px;
    }
}