:root {
    --primary-color: #223a34;      /* Vert foncé */
    --secondary-color: #C8A165;   /* Doré */
    --accent-color: #E8D9C1;      /* Beige moyen */
    --background-light: #E5E3D5;  /* Beige clair */
    --text-color: #223a34;        /* Texte principal */
    --light-text: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-item {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 65vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0 5%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-content {
    flex: 1;
    color: var(--light-text);
    text-align: left;
    padding: 1rem 0;
    max-width: 600px;
}

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

.hero-image img {
    max-width: 90%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    border-radius: 20px;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: #008080;
}

/* Why Us Section */
.why-us {
    padding: 5rem 5%;
}

.why-us-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
}

.why-us-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 5rem 5%;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #F7C94B;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background-color: #e5b73c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[title="LinkedIn"]:hover {
    color: #00a0a0;
}

.social-links a[title="Twitter"]:hover {
    color: #00b3b3;
}

.social-links a[title="Instagram"]:hover {
    color: #009999;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        margin-top: 1rem;
    }

    .hero-image img {
        max-width: 80%;
    }

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

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 5% 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .features {
        padding: 3rem 5%;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .welcome-section {
        padding: 3rem 5%;
    }

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

    .welcome-subtitle {
        font-size: 1.1rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Media Queries pour les tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 1.5rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-mission {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .feature-card,
    .service-card {
        padding: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    margin-top: 60px;
    padding: 2rem 5%;
}

.about-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

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

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .about-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-image {
        margin-top: 2rem;
    }

    .about-hero-image img {
        max-width: 80%;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 3rem 5%;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-image img {
        max-width: 100%;
    }
}

.about-content {
    padding: 4rem 5%;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--light-text);
    margin-top: 60px;
    padding: 2rem 5%;
}

.services-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.services-hero-content {
    flex: 1;
    max-width: 600px;
}

.services-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-button {
    align-self: center;
    width: fit-content;
}

.methodology {
    background-color: var(--background-light);
    padding: 4rem 5%;
    text-align: center;
}

.methodology h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-hero {
    height: 40vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 60px;
}

.contact-content {
    padding: 4rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.map-section {
    padding: 4rem 5%;
    text-align: center;
}

.map-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 10px;
}

/* Responsive Design for new sections */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .services-hero,
    .contact-hero {
        height: 40vh;
    }
}

/* Error Page Styles */
.error-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 60px;
}

.error-content {
    max-width: 600px;
}

.error-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-content p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
}

.flash-message {
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

.flash-message.success {
    background-color: #4caf50;
    color: white;
}

.flash-message.error {
    background-color: #f44336;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.language-selector {
    margin-left: 1rem;
}

.language-selector select {
    padding: 0.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background-color: var(--accent-color);
    color: white;
}

.services-description {
    max-width: 900px;
    margin: 2rem auto 3rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
    padding: 0 2rem;
}

.services-description p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .services-description {
        padding: 0 1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .services-description p {
        font-size: 1.15rem;
        line-height: 1.6;
    }
}

@media (max-width: 968px) {
    .services-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .services-hero-content {
        max-width: 100%;
    }

    .services-hero-image {
        margin-top: 2rem;
    }

    .services-hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: auto;
        padding: 3rem 5%;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero-image img {
        max-width: 100%;
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.welcome-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section .section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.welcome-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.welcome-content {
    margin-bottom: 4rem;
}

.welcome-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-section {
    margin-bottom: 4rem;
    text-align: center;
}

.about-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision, .mission {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision h3, .mission h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.what-we-do {
    margin-bottom: 4rem;
}

.what-we-do h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pillar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pillar h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.pillar ul {
    list-style: none;
    padding: 0;
}

.pillar ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent-color);
}

.pillar ul li:last-child {
    border-bottom: none;
}

.why-partner {
    margin-bottom: 4rem;
    text-align: center;
}

.why-partner h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-partner ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.why-partner ul li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.closing-statement {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 2rem;
}

.languages {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.languages h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 5%;
    }

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

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

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

/* Menu Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

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

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

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

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }
}

/* Dropdown menu styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 16px 24px;
  z-index: 10;
  color: #222;
}

.dropdown-section {
  margin-bottom: 16px;
}
.dropdown-section:last-child {
  margin-bottom: 0;
}
.dropdown-title {
  font-weight: 600;
  color: #bfa13a;
  margin-bottom: 6px;
  display: block;
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}
.dropdown-menu li {
  padding: 3px 0;
  font-size: 15px;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 900px) {
  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

/* Show dropdown on click (mobile) */
@media (max-width: 899px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #fff;
    padding: 12px 0;
    min-width: unset;
  }
  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.error-message span {
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-control.error {
    border-color: #dc3545;
}

/* Flash Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* =================
   Sub-Service Pages
   ================= */

.sub-service-hero {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.sub-service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.sub-service-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.sub-service-offerings,
.sub-service-benefits {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.offerings-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offering-card,
.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover,
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offering-icon,
.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.offering-card h3,
.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sub-service-approach {
    padding: 4rem 5%;
}

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

.approach-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific Hero for People & Culture Page */
.people-culture-hero {
    position: relative;
    padding: 4rem 5%;
    margin-top: 60px;
    background-image: url('../images/hero-consulting-hr.svg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.people-culture-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 58, 52, 0.7); /* primary-color with alpha */
    z-index: 1;
}

.people-culture-hero .sub-service-hero-content {
    position: relative;
    z-index: 2;
}

.people-culture-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.people-culture-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Section Styling */
.sub-service-offerings {
    padding: 2rem 8% 5rem;
    background-color: var(--background-light);
}

.sub-service-offerings .container {
    max-width: 1400px;
    margin: 0 auto;
}

.sub-service-offerings .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1400px;
}

.offering-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offering-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.offering-icon i, .offering-icon svg {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.offering-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offering-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sub-service-offerings {
        padding: 4rem 5%;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offering-card {
        padding: 2rem 1.5rem;
    }
}

/* Talent Acquisition Page Styles */
.service-detail {
    padding: 4rem 8%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-top: 60px;
}

.service-detail .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.service-detail p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-detail li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.service-detail li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.service-detail-content {
    padding: 4rem 8%;
    background-color: var(--background-light);
}

.service-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-detail-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-card p {
    line-height: 1.6;
    color: var(--text-color);
}

.service-benefits {
    padding: 4rem 8%;
    background: white;
}

.service-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.5;
}

.service-cta {
    padding: 4rem 8%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.service-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .service-detail {
        padding: 3rem 5%;
    }

    .service-detail h1 {
        font-size: 2.5rem;
    }

    .service-detail ul {
        grid-template-columns: 1fr;
    }

    .service-detail-content,
    .service-benefits,
    .service-cta {
        padding: 3rem 5%;
    }

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

    .service-cta h2 {
        font-size: 2rem;
    }
}

/* Hero Service Section */
.hero-service {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 5% 4rem;
    margin-top: 60px;
    color: white;
    position: relative;
}

.hero-service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-service h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-service p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    opacity: 0.9;
}

.discover-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.discover-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Methodology Section */
.methodology-section {
    padding: 4rem 5%;
    background-color: white;
}

.methodology-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.methodology-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.methodology-section p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 4rem 5%;
    background-color: var(--background-light);
}

.why-us-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-us-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-us-section p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 5%;
    background-color: white;
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-service {
        padding: 4rem 5% 3rem;
    }

    .hero-service h1 {
        font-size: 2.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .methodology-section,
    .why-us-section,
    .benefits-section {
        padding: 3rem 5%;
    }
} 

.footer-section a[href*="google.com/maps"],
.footer-section a[href*="google.com/search"] {
    color: #fff !important;
    text-decoration: underline;
}
.footer-section a[href*="google.com/maps"]:hover,
.footer-section a[href*="google.com/search"]:hover {
    color: #C8A165 !important;
} 