/*
Theme Name: HIMI Bejaia
Theme URI: https://himi-bejaia.com/
Author: saldae systems
Author URI: https://saldaesystems.com/
Description: Thème personnalisé pour le site de HIMI Bejaia, développé sur la base d'un cahier des charges détaillé.
Version: 1.0
*/

:root {
    --himi-primary: #134a7d;
    --himi-secondary: #e84e1e;
    --himi-tertiary: #34a7df;
    --sherbrooke-primary: #015f50;
    --ppa-primary: #e84e1e;
    --ppa-secondary: #134a7d;
    --esgi-primary: #34a7df;
    --esgi-secondary: #134a7d;
    --text-dark: #333333;
    --text-light: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background-color: transparent; /* Changed from var(--text-light) to transparent */
    margin: 0;
    transition: background-color 1s ease;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Header V3 (Dynamic)
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 10vh;
    margin: 0; /* Added as per request */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background: linear-gradient(
        135deg,
        rgba(19, 74, 125, 0.15),
        rgba(232, 78, 30, 0.15),
        rgba(52, 167, 223, 0.15)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-logo-img {
    width: auto;
    filter: brightness(0) invert(1); /* Rendre le SVG blanc */
    transition: filter 0.3s ease;
}

.header-logo-img:hover {
    filter: none; /* Révéler les couleurs originales */
}

/* --- Desktop Header (1025px and up) --- */
@media (min-width: 1025px) {
    .mobile-logo,
    .hamburger-menu,
    .mobile-menu-overlay {
        display: none;
    }

    .desktop-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header-logo-img {
        /* Added for desktop view */
        height: 7vh; /* Changed from 9vh to 7vh */
    }

    .header-col-left {
        width: 25%; /* Changed from 30% to 25% */
        display: flex;
        justify-content: flex-start;
        align-items: center; /* Added for vertical centering */
        padding-left: 2%; /* Changed from 6% to 2% */
    }
    .header-col-center {
        width: 50%; /* Changed from 40% to 50% */
        display: flex;
        justify-content: center;
        height: 10vh; /* Added as per request */
    }
    .header-col-right {
        width: 25%; /* Changed from 30% to 25% */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 2%; /* Changed from 6% to 2% */
    }

    #site-navigation-desktop ul {
        display: flex;
        justify-content: center;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #site-navigation-desktop {
        width: 100%;
        height: 100%;
    }

    /* Final Animation Styles */
    #site-navigation-desktop li {
        width: 10%; /* Changed from 13% to 10% */
        list-style: none;
        position: relative;
        height: 9vh; /* Changed from 100% to 9vh */
    }

    #site-navigation-desktop li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: white; /* Changed from turquoise to white */
        background-color: transparent; /* Changed from blue to transparent */
        border-radius: 10px;
        padding: 0;
        margin: 0;
        overflow: hidden;
        font-weight: 700;
        transition:
            height 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    #site-navigation-desktop li a .menu-icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: 3vh; /* Increased from 2.5vh to 3vh */
        transition: transform 0.3s ease;
    }

    #site-navigation-desktop li a .menu-text {
        opacity: 0;
        position: absolute;
        bottom: 2vh; /* Changed from 1vh to 2vh */
        font-size: 1.5vh; /* Increased from 1.1vh to 1.5vh */
        transition: opacity 0.3s ease 0.1s;
        text-transform: none !important;
    }

    #site-navigation-desktop li:hover a {
        height: 9.5vh; /* Grow just under the header's 10vh */
        background-color: transparent; /* Changed from blue to transparent */
        z-index: 10;
        color: var(--himi-secondary);
    }

    #site-navigation-desktop li:hover .menu-icon {
        transform: translateY(-1vh); /* Changed from -0.5vh to -1vh */
    }

    #site-navigation-desktop li:hover .menu-text {
        opacity: 1;
    }
    /* End Final Animation Styles */

    .header-social-icons a {
        color: white;
        margin: 0 10px;
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        transition: color 0.3s ease;
    }

    .header-social-icons a:hover {
        color: var(--himi-secondary);
    }

    .header-cta {
        display: flex;
        align-items: center;
        background-color: var(--himi-secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 0;
        font-weight: 700;
        margin-left: 20px;
        transition: background-color 0.3s ease;
    }
    .header-cta:hover {
        background-color: var(--himi-tertiary);
    }
    .header-cta i {
        margin-right: 8px;
    }
}

/* --- Mobile Header (1024px and down) --- */
@media (max-width: 1024px) {
    .desktop-header-container {
        display: none;
    }
    .site-header {
        justify-content: space-between;
        padding: 0 20px; /* Add some padding */
        background-color: rgba(
            19,
            74,
            125,
            0.5
        ); /* Fallback for older browsers */
    }

    .mobile-logo .header-logo-img {
        height: 6vh; /* Set a height for the mobile header logo */
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1010;
    }

    .hamburger-menu .line {
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    body.mobile-menu-is-open .hamburger-menu .line {
        background-color: white;
    }
    body.mobile-menu-is-open .hamburger-menu .line:nth-child(1) {
        transform: rotate(45deg);
    }
    body.mobile-menu-is-open .hamburger-menu .line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    body.mobile-menu-is-open .hamburger-menu .line:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 10vh; /* Match header height */
        left: 0;
        width: 100%;
        height: 90vh; /* Adjust to fill remaining height */
        background-color: rgba(19, 74, 125, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.5s ease-in-out,
            visibility 0.5s ease-in-out;
        z-index: 9999; /* Increased z-index */
    }

    body.mobile-menu-is-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-top,
    .mobile-menu-nav,
    .mobile-menu-cta,
    .mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .mobile-menu-top {
        height: 25%;
    }
    .mobile-menu-nav {
        height: 45%;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    .mobile-menu-cta {
        height: 15%;
    }
    .mobile-menu-social {
        height: 15%;
    }

    .mobile-menu-logo {
        height: 90%;
        width: auto;
        max-width: 250px; /* Empêche le logo d'être trop grand */
        filter: brightness(0) invert(1);
    }

    .mobile-navigation {
        width: 100%;
    }
    .mobile-navigation ul {
        list-style: none;
        padding: 0 0 0 2rem;
        margin: 0;
        text-align: left;
    }

    #mobile-menu .menu-item a {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    #mobile-menu .menu-icon {
        color: var(--himi-tertiary);
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        width: 25px;
        margin-right: 15px;
        text-align: center;
    }

    #mobile-menu .menu-text {
        color: var(--himi-tertiary);
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        font-weight: 700;
        text-transform: none;
    }

    .mobile-menu-cta .header-cta {
        background-color: var(--himi-tertiary);
        color: white;
        border: none;
        padding: 10px 30px;
    }
    .mobile-menu-cta .header-cta:hover {
        background-color: var(--himi-secondary);
        color: white;
    }

    .mobile-menu-social .header-social-icons {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        padding: 0 2rem;
    }
    .mobile-menu-social .header-social-icons a {
        color: var(--himi-tertiary);
        font-size: clamp(1.5rem, 2.5vw, 1.8rem);
        margin: 0;
    }
}

/* --- Responsive Section Heights --- */
@media (max-width: 1023px) {
    .temoignages,
    .trajectoires,
    .terminal-footer {
        height: auto !important; /* Change height to auto */
        min-height: auto !important; /* Change min-height to auto */
        padding-top: 10vh;
        padding-bottom: 10vh;
        position: relative; /* Add position relative */
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-box.box-1,
    .bento-box.box-4 {
        grid-column: span 1;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .double-modele {
        flex-direction: column;
    }
    .double-modele-colonne {
        width: 100%;
        text-align: center !important;
        align-items: center;
    }

    /* Mobile Menu Refinements for Phones */
    .mobile-menu-nav {
        padding-top: 1.5rem;
    }
    #mobile-menu .menu-item a {
        margin-bottom: 1rem;
    }
    #mobile-menu .menu-icon,
    #mobile-menu .menu-text {
        font-size: 1rem;
    }
    #mobile-menu .menu-icon {
        width: 20px;
        margin-right: 10px;
    }
    .mobile-menu-cta .header-cta {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .mobile-menu-social .header-social-icons a {
        font-size: 1.5rem;
    }

    /* --- Footer Mobile Layout --- */
    .terminal-footer {
        padding: 4rem 1rem;
    }

    .terminal-content {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .terminal-widget,
    .terminal-cta-container {
        flex-basis: auto;
        width: 90%;
        text-align: center;
    }

    .terminal-widget.right-widget {
        text-align: center; /* On centre aussi la colonne de droite */
    }

    .social-icons-footer {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 1rem;
    }

    .social-icons-footer a {
        margin-left: 0; /* On retire la marge spécifique */
    }
}

/* --- Scroll Indicator Mouse --- */
.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid white;
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--himi-tertiary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-out infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 10px);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* --- Global Scrollbar Styling --- */
/* Pour Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.2);
}

/* Pour Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px; /* Largeur */
    height: 8px; /* Hauteur */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* --- Copyright Band (Terminal Footer) --- */
#terminal-footer .copyright-band {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2%;
    font-size: clamp(10px, 1.2vw, 12px);
    color: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
}

#terminal-footer .copyright-band a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

#terminal-footer .copyright-band a:hover {
    color: var(--himi-secondary);
}

body:not(.front-page):not(.home) #site-navigation-desktop li a,


/* --- UNIFORMISATION DES PAGES INTERNES (DEMANDE UTILISATEUR) --- */

/* 1. Styles pour les pages internes générales */


body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    .header-logo-img:hover {
    filter: none; /* Garde les vraies couleurs au survol */
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    #site-navigation-desktop
    li
    a {
    color: var(--himi-primary); /* Menus en bleu-himi */
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    #site-navigation-desktop
    li:hover
    a {
    color: var(--himi-tertiary); /* Menus en turquois-himi au survol */
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    .header-social-icons
    a {
    color: #cccccc; /* Icônes sociales en gris clair */
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    .header-social-icons
    a:hover {
    color: var(--himi-secondary); /* Icônes sociales en orange-himi au survol */
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    .header-cta {
    background-color: var(--himi-primary); /* CTA en bleu-himi */
    color: white;
}

body:not(.front-page):not(.home):not(.single-formation):not(.single-partenaire)
    .header-cta:hover {
    background-color: var(--himi-tertiary); /* CTA en turquois-himi au survol */
}

/* 2. Ajustements structurels des pages */
.page-single-partenaire,
.page-archive-formation,
.page-single-formation,
.page-rncp,
.page-faq,
.page-admissions,
.page-archive-partenaire {
    padding-top: 0; /* Supprime le padding pour que le header se superpose */
}

.page-faq section,
.page-rncp section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Styles pour single-formation et single-partenaire --- */

/* Logo: blanc, puis couleur au survol */
.single-formation .site-header .header-logo-img,
.single-partenaire .site-header .header-logo-img {
    filter: brightness(0) invert(1);
}

.single-formation .site-header .header-logo-img:hover,
.single-partenaire .site-header .header-logo-img:hover {
    filter: none;
}

/* Menus: couleur dynamique, puis gris foncé au survol */
.single-formation .site-header #site-navigation-desktop li a,
.single-partenaire .site-header #site-navigation-desktop li a {
    color: var(--dynamic-header-color);
}

.single-formation .site-header #site-navigation-desktop li:hover a,
.single-partenaire .site-header #site-navigation-desktop li:hover a {
    color: #333333;
}

/* Icônes sociales: gris clair, puis gris foncé au survol */
.single-formation .site-header .header-social-icons a,
.single-partenaire .site-header .header-social-icons a {
    color: #cccccc; /* gris clair */
}

.single-formation .site-header .header-social-icons a:hover,
.single-partenaire .site-header .header-social-icons a:hover {
    color: #333333;
}

/* Bouton CTA: couleur dynamique, puis gris foncé au survol */
.single-formation .site-header .header-cta,
.single-partenaire .site-header .header-cta {
    background-color: var(--dynamic-header-color);
    color: white;
}

.single-formation .site-header .header-cta:hover,
.single-partenaire .site-header .header-cta:hover {
    background-color: #333333;
}

/* --- UNIFORMISATION DES PAGES INTERNES (DEMANDE UTILISATEUR) --- */

/* 1. Supprimer le padding supérieur des pages pour que le header se superpose */
.page-single-partenaire,
.page-archive-formation,
.page-single-formation,
.page-rncp,
.page-faq,
.page-admissions,
.page-archive-partenaire {
    padding-top: 0;
}

/* 2. Appliquer le min-height: 60vh et le centrage vertical aux sections des pages qui en manquaient */
.page-faq section,
.page-rncp section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body:not(.front-page):not(.home) #site-navigation-desktop li:hover a {
    color: var(--himi-tertiary); /* Icônes de menu en turquoise au survol */
}

body:not(.front-page):not(.home) .header-social-icons a {
    color: var(--text-dark); /* Icônes sociales en gris foncé */
}

body:not(.front-page):not(.home) .header-social-icons a:hover {
    color: var(--himi-secondary); /* Icônes sociales en orange au survol */
}

body:not(.front-page):not(.home) .header-cta {
    background-color: var(--himi-secondary); /* Bouton CTA en orange */
}

body:not(.front-page):not(.home) .header-cta:hover {
    background-color: var(
        --himi-tertiary
    ); /* Bouton CTA en turquoise au survol */
}

/* On s'assure que le logo reste bien blanc sur la page d'accueil */
body.front-page .header-logo-img,
body.home .header-logo-img {
    filter: brightness(0) invert(1);
}

body.front-page .header-logo-img:hover,
body.home .header-logo-img:hover {
    filter: none;
}

/* --- Styles Spécifiques pour les Pages Internes (Campus, FAQ, RNCP) --- */
.page-template-page-campus .page-title,
.page-template-page-faq .page-title,
.page-template-page-rncp .page-title {
    color: var(--himi-primary);
}

.page-template-page-campus h2,
.page-template-page-faq h2,
.page-template-page-rncp h2 {
    color: var(--himi-tertiary);
}

.page-template-page-campus h3,
.page-template-page-campus .valeur-item i,
.page-template-page-rncp h3,
.page-template-page-rncp .section-comprendre i,
.page-template-page-rncp .avantage-item i,
.page-template-page-faq .faq-item summary {
    color: var(--himi-secondary);
}
/* --- Styles pour la modale de contact -- */
.himi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 74, 125, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.himi-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.himi-modal-content {
    background-color: white;
    padding: 2rem;
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.4s ease-out;
    overflow-y: auto; /* Permet de scroller si le formulaire est long */
    border-radius: 0;
    box-shadow: none;
    transform: translateY(100%);
}

.himi-modal-overlay.is-visible .himi-modal-content {
    transform: translateY(0);
}

/* Styles pour ordinateur */
@media (min-width: 769px) {
    .himi-modal-content {
        width: 70%;
        height: auto;
        max-height: 90vh;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }

    .himi-modal-overlay.is-visible .himi-modal-content {
        transform: scale(1);
    }
}

.himi-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

.himi-modal-close:hover {
    color: #333;
}

.himi-modal-body .wpforms-container .wpforms-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--himi-primary, #134a7d);
    margin-bottom: 1.5rem;
}

.himi-modal-body .wpforms-container {
    padding: 0 !important;
}

/* --- Section 8: Pied de Page (Terminal) --- */
.terminal-footer {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.terminal-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    gap: 2rem;
}

.terminal-col {
    height: 100%;
}

.terminal-col-form {
    flex-basis: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-col-info {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.terminal-widget {
    text-align: left;
}

.terminal-widget h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--himi-secondary);
    margin-bottom: 1rem;
}

.terminal-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terminal-widget ul li a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.terminal-widget p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

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

.contact-item i {
    width: 1.2em;
    text-align: center;
}

.social-icons-footer {
    display: flex;
    gap: 20px;
}

.social-icons-footer a {
    color: var(--text-light);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-left: 0;
}

.contact-form-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    text-align: left;
}

.contact-form-card h3 {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 15px;
}

.simple-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.simple-contact-form input[type="text"],
.simple-contact-form input[type="email"],
.simple-contact-form input[type="tel"],
.simple-contact-form textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px;
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.simple-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.captcha-placeholder {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    border-radius: 5px;
}

.simple-contact-form button[type="submit"] {
    background-color: var(--himi-secondary);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.simple-contact-form button[type="submit"]:hover {
    background-color: var(--himi-tertiary);
}

.main-cta-button {
    display: inline-block;
    background-color: var(--himi-secondary);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: background-color 0.3s ease;
}

.main-cta-button:hover {
    background-color: var(--himi-tertiary);
}
