/*
Theme Name: War Forum Theme
Theme URI: https://warforum.org
Author: War Forum Team
Description: Custom theme for Forum for War Orphans website - RTL Hebrew/English
Version: 1.0.0
Text Domain: war-forum
*/

/* ===========================
   RESET & BASE STYLES
   =========================== */

@font-face {
    font-family: 'FbMatador';
    src: url('webfont/FbMatador-Bold.eot');
    src: url('webfont/FbMatador-Bold.eot?#iefix') format('embedded-opentype'),
         url('webfont/FbMatador-Bold.woff2') format('woff2'),
         url('webfont/FbMatador-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-bg: #E0D5CF;
    --secondary-bg: #E8E3DD;
    --header-bg: #DFD6CF;
    --accent-color: #D77960;
    --text-dark: #003346;
    --text-gray: #666;
    --white: #FFFFFF;
}

html, body { overflow-x: hidden; }

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
}

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

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

/* ===========================
   HEADER - EXACT FIGMA DESIGN
   =========================== */
.site-header {
    background: rgb(223, 214, 207); /* Exact Figma: #DFD6CF */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 135px;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0px 4px 4px rgba(12, 12, 13, 0.05), 0px 2px 32px rgba(12, 12, 13, 0.1);
}


.hidden-fields-container
{
    display: none;
}




.header-container {
    max-width: 1440px;
    width: 100%;
    height: 135px;
    margin: 0 auto;
    position: relative;
}

/* Language Switcher - Left Side (x: 107px, y: 56px) */
.language-switcher {
    position: absolute;
    left: 107px;
    top: 56px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.language-switcher a {
    color: rgb(0, 51, 70);
    text-decoration: none;
    transition: color 0.3s ease;
}

.language-switcher a:hover {
    color: rgb(215, 121, 96);
}

/* Navigation Menu - Center (x: 262px, y: 51px) */
.main-navigation {
    position: absolute;
    left: 262px;
    top: 51px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-direction: row-reverse; /* RTL: right to left */
    direction: ltr;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(232, 227, 221); /* Exact Figma: #E8E3DD */
    border-radius: 17.5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: rgb(0, 51, 70); /* Exact Figma: #003346 */
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    height: 35px;
    transition: all 0.3s ease;
}

/* Menu items auto-width based on content */
.nav-menu li a {
    padding: 0 18px;
}

.nav-menu li a:hover {
    background: rgb(215, 121, 96);
    color: white;
    transform: translateY(-2px);
}

.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    border: 1px solid rgb(215, 121, 96);
}

/* Logo - Right Side (x: 1227px, y: 18px) */
.site-logo {
    position: absolute;
    right: 107px;
    top: 18px;
}



@media (max-width: 1400px) 
{


    .site-logo {
        /* left: 107px !important; */
        right: 20px;
    }
}


.site-logo img,
.site-logo a img,
.custom-logo-link img {
    width: 106px !important;
    height: 100px !important;
    max-width: 106px !important;
    max-height: 100px !important;
    object-fit: contain;
}

/* ===========================
   MAIN CONTENT
   =========================== */
.site-main {
    background: var(--primary-bg);
}

/* ===========================
   HERO SECTION (y: 135-549)
   =========================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 414px;
    padding: 0;
    background: var(--primary-bg);
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
}

.quote-right
{
    font-size: 91px;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 400;
    margin-right: -60px;
}




.quote-left {
    font-size: 91px;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 400;
}


.hero-quote {
    font-family: 'FbMatador', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 635px;
    color: var(--text-dark);
    text-align: center;
}

.hero-quote p {
    margin: 0;
    display: inline;
}

.hero-author {
    font-size: 18px;
    font-weight: 400;
    margin-top: 35px;
    color: var(--text-dark);
}

.hero-child {
    width: 487px;
    height: auto;
    margin: 51px auto 0;
    display: block;
}

/* ===========================
   DATE SECTION (y: 549-1187)
   =========================== */
.date-section {
    background: var(--secondary-bg);
    padding: 77px 0;
    width: 100%;
}

.date-content {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 104px;
    text-align: center;
}

.date-image {
    width: 556px;
    height: auto;
    margin: 0 auto 49px;
    display: block;
}

.date-text-content {
    font-size: 18px;
    line-height: 1.72;
    text-align: center;
    margin: 0 auto;
    max-width: 813px;
    color: var(--text-dark);
    opacity: 1;
}

.date-text-content p {
    margin: 0 0 18px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.date-text-content p:last-child {
    margin-bottom: 0;
}

.date-text-content br {
    content: "";
    display: inline;
}

/* ===========================
   STATISTICS CARD (y: 1208-1630)
   =========================== */
.stats-section {
    padding: 21px 0 60px;
    background: var(--primary-bg);
    background-image: url('../../../images/bg-wave2.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.stats-container {
    max-width: 1232px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 104px;
}

.stats-illustration {
    width: 264px;
    height: auto;
    flex-shrink: 0;
    right: -55px;
    z-index: 9;
    position: relative;
}


.stats-card {
    background: var(--secondary-bg);
    border-radius: 14px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(12, 12, 13, 0.05), 0px 2px 32px rgba(12, 12, 13, 0.1);
    width: 458px;
    flex-shrink: 0;
    position: relative;
    height: 256px;
}



.stats-card:hover {

    box-shadow: 0px 4px 4px rgba(12, 12, 13, 0.05), 0px 12px 32px rgba(12, 12, 13, 0.1);

}

.stats-card-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
}

.stats-card-content.active {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

.stats-number-badge {
    background-image: url('../../../images/brush-black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--accent-color);
    font-size: 60px;
    font-weight: 700;
    padding: 20px 40px;
    display: inline-block;
}

.stats-main-title
{
    display:none;
}

.stats-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.stats-main-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.stats-list li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stats-side-info {
    flex-shrink: 0;
    max-width: 293px;
}

.stats-heading {
    font-family: 'FbMatador', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.stats-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.stats-description p {
    margin: 0 0 10px 0;
}

.stats-description p:last-child {
    margin-bottom: 0;
}

.stats-description br {
    content: "";
    display: inline;
}

/* ===========================
   DECORATIVE ROPE DIVIDER
   =========================== */
.decorative-rope-divider {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    height: 230px;
    overflow: visible;
    z-index: 5;
}

.decorative-rope-divider img {
    position: absolute;
    right: -70px;
    top: -70px;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* ===========================
   IMAGE + TEXT SECTION (y: 1569-2404)
   =========================== */
.image-text-section {
    position: relative;
    padding: 20px 0;
    background: var(--primary-bg);
}

.image-text-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 80px;
}

.image-text-content {
    max-width: 100%;
    text-align: right;
    margin-bottom: 40px;
}

.main-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-text-1,
.section-text-2,
.section-text-3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.image-text-content .highlight-text {
    color: var(--text-dark);
    font-weight: 500;
}

.read-more-wrapper {
    text-align: center;
    margin: 40px 0 60px 0;
}

.image-text-content .read-more-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.image-text-content .read-more-link:hover {
    opacity: 0.8;
}

.image-text-image {
    text-align: center;
    margin: 40px 0;
}

.image-text-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-text-footer {
    position: relative;
    width: 100%;
    min-height: 100px;
    display:none;
}

.decorative-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    height: 100px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.organizations-label {
    position: absolute;
    right: 0;
    bottom: 20px;
    text-align: right;
    z-index: 2;
}

.org-label-line-1,
.org-label-line-2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ===========================
   PARTNERS SECTION (y: 2720-2907)
   =========================== */
.partners-section {
    position: relative;
    padding: 80px 0;
    background: var(--primary-bg);
    padding-top: 0;
}

.partners-decorative {
    position: absolute;
    right: 590px;
    bottom: 196px;
    width: 274px;
    height: 236px;
    z-index: 1;
    pointer-events: none;
}

.partners-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    z-index: 2;
}

.partners-heading {
    font-family: 'FbMatador', sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-align: right;
    line-height: 1.3;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    max-width: 1232px;
    margin: 0 auto;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-fade-left,
.slider-fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(224,213,207,1) 0%, rgba(224,213,207,0) 100%);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(224,213,207,1) 0%, rgba(224,213,207,0) 100%);
}

.partners-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.slider-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 40px;
    flex-shrink: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-arrow img {
    width: 100%;
    height: auto;
    position: absolute;
    transition: opacity 0.3s;
}

.slider-arrow .arrow-static {
    opacity: 0;
}

.slider-arrow .arrow-hover {
    opacity: 1;
}

.slider-arrow:hover .arrow-static {
    opacity: 1;
}

.slider-arrow:hover .arrow-hover {
    opacity: 0;
}

.slider-next img {
    transform: scaleX(-1);
}

.partner-card {
    width: 187px;
    height: 187px;
    background: var(--secondary-bg);
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===========================
   CONTACT FORM SECTION (y: 3027-3691)
   =========================== */
.contact-section {
    padding: 40px 0;
    background: #E0D5CF;
}

.contact-wrapper {
    max-width: 1337px;
    margin: 0 auto;
    padding: 0 54px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.contact-heading-area {
    flex-shrink: 0;
    width: 353px;
    text-align: right;
}

.contact-heading {
    font-family: 'FbMatador', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.contact-heading p {
    margin: 0;
    display: block;
}

.contact-heading br {
    content: "";
    display: inline;
}

.contact-heading.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.contact-heading .highlight-text {
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.form-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-self: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row .form-group {
    width: 372px;
    flex-shrink: 0;
}

.contact-form > .form-group:not(.full-width) {
    width: 774px;
    align-self: flex-end;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: right;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 12px;
    background: #E8E3DD;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    height: 48px;
    direction: rtl;
    text-align: right;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23003346' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 35px;
    cursor: pointer;
}

.form-group.full-width {
    width: 100%;
    align-self: flex-end;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-left: auto;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-dark);
    text-align: right;
}

.form-checkbox label a {
    color: var(--text-dark);
    text-decoration: underline;
}


.mp-maz
{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.im-maz
{
    max-width: 354px;
    margin: 0 auto;
}

.btn-submit {
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid var(--text-dark);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 115px;
    height: 49px;
    margin-left: auto;
    margin-right: 22px;
}

.btn-submit:hover {
    background: var(--text-dark);
    color: #D77960;
}

/* Contact Form 7 Fixes */
.wpcf7 .form-row,
.wpcf7 .form-group,
.wpcf7 .form-checkbox {
    display: flex;
}

.wpcf7 .form-group {
    flex-direction: column;
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap {

    display: block;
}




.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
}

.wpcf7 .btn-submit,
.wpcf7 input.btn-submit {
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid var(--text-dark);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 115px;
    height: 49px;
    margin-left: auto;
    margin-right: 22px;
}


.wpcf7 .btn-submit, .wpcf7 input.btn-submit {

    margin-right: 0 !important;
    margin-top: 20px;
    margin-left: 0 !important;
}

.wpcf7-submit:hover,
.wpcf7 .wpcf7-submit:hover,
.wpcf7 .btn-submit:hover,
.wpcf7 input.btn-submit:hover {
    background: var(--text-dark) !important;
    color: #D77960 !important;
}

.wpcf7 .form-checkbox {
    justify-content: flex-end;
}


/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--secondary-bg);
    width: 100%;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 96px;
    min-height: 160px;
    position: relative;
}

.footer-logo {
    position: absolute;
    right: 107px;
    top: 25px;
}

.footer-logo img,
.footer-logo .custom-logo-link img {
    width: 106px !important;
    height: 100px !important;
}

.footer-navigation ul {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    direction: rtl;
}

.footer-navigation {
    direction: rtl;
}

.footer-navigation li {
    list-style: none;
}

.footer-navigation a {
    padding: 6px 20px;
    background: var(--primary-bg);
    border-radius: 17.5px;
    font-size: 16px;
    height: 35px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-navigation a:hover {
    background: var(--accent-color);
    color: white;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 40px;
    font-size: 16px;
    position: relative;
    right: -70px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    background: var(--primary-bg);
    padding: 8px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-dark);
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-bottom-content span {
    white-space: nowrap;
}

.olin-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s;
}

.olin-link:hover {
    opacity: 0.7;
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-only {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    left: 20px;
    top: 50px;
    z-index: 1001;
    }
    
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    }
    
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Tablet and below */


@media (max-width: 1700px) {


    .about-mission-section {
        background-position: right 240px top 153px !important;
    }
}




@media (max-width: 1400px) {


    .about-mission-section {
        background-position: right 130px top 153px !important;
    }

.nav-menu 
{
    flex-wrap: wrap;
    margin-right: 200px;
}

.hero-quote {
margin-top:50px;
}

}



@media (max-width: 1100px) {
    * {
        box-sizing: border-box;
    }


   


    
    body {
        overflow-x: hidden;
    }
    
    /* Hide desktop menu, show mobile toggle */
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Mobile menu active item styles */
    .nav-menu li.current-menu-item a,
    .nav-menu li.current_page_item a {
        border: none;
        font-weight: bold;
    }
    
    .language-switcher.desktop-only {
        display: none !important;
    }
    
    .language-switcher.mobile-only {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0,51,70,0.1);
        position: static;
    }
    
    .header-container {
        height: auto;
    }
    
    .main-navigation {
        width: 100%;
        display: none;
    }

    .contact-form
    {
        display:block !important;
    }

    .image-text-section
    {
        padding-right:20px;
        padding-left:20px;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation.active ~ .site-logo,
    .main-navigation.active ~ .language-switcher.desktop-only {
        display: none;
    }
    
    .main-navigation.active .language-switcher.mobile-only {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        margin-top: 21px;
    }
    
    .main-navigation.active .nav-menu {
        display: block;
        background: var(--header-bg);
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 100px;
        height: 100vh;
    }
    
    .nav-menu li
    {
    margin-bottom: 20px;
    }

.hero-quote
{
    position: relative;
}


.quote-right 
{
    font-size: 91px;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 400;
    margin-right: -170px;
    margin-top: -20px;
    position: absolute;
}


.quote-left
{
    font-size: 91px;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 400;
    margin-right: 170px;
    margin-top: -70px;
    position: absolute;
}


    .nav-menu li a {
        width: auto !important;
        padding: 0 30px !important;
        background:none !important
    }
    
    /* Content */
    .hero-quote {
        font-size: 46px;
        line-height: 0.9;
    }
    
    .hero-quote p {
        margin: 0 !important;
        padding: 0 !important;
        display: block;
        line-height: 1.3;
    }
    
    .hero-child {
        width: 85%;
        max-width: 400px;
    }
    
    .date-content {
        padding: 0 30px;
    }
    
    .date-image {
        width: 90%;
        max-width: 450px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 30px;
    }
    
    .stats-illustration,
    .stats-card,
    .stats-side-info {
        width: 100%;
        max-width: 500px;
    }
    
    .image-text-wrapper {
        padding: 40px 20px;
    }
    
    .image-text-content {
        margin-bottom: 30px;
    }
    
    .image-text-image {
        margin: 30px 0;
    }
    
    .image-text-footer {
        min-height: 80px;
    }
    
    .decorative-wave {
        height: 60px;
    }
    
    .organizations-label {
        bottom: 10px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-heading-area,
    .contact-form {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row .form-group {
        width: 100% !important;
        max-width: 100%;
    }
    
    .contact-form > .form-group:not(.full-width) {
        width: 100% !important;
        max-width: 100%;
    }
    
    .form-group.full-width {
        width: 100% !important;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        max-width: 100%;
    }
    
    .form-checkbox {
        width: 100%;
        margin-right: 0;
    }
    
    .btn-submit {
        margin-right: 0;
    }
    
    .footer-content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .footer-logo {
        position: static;
        text-align: center;
        margin-bottom: 30px;
        display: block;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-navigation {
        margin-bottom: 30px;
    }
    
    .footer-navigation ul {
        justify-content: center;
        gap: 8px;
        margin-bottom: 0;
    }
    
    .footer-navigation a {
        font-size: 14px;
        height: 32px;
        padding: 6px 15px;
    }
    
    .footer-contact-info {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-item {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 12px 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }
    
    .footer-bottom-content span {
        display: block;
        white-space: normal;
    }
    
    .footer-separator {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 580px) {



.partners-container {

    padding: 0 20px !important;

}



    .mobile-menu-toggle {
        left: 15px;
        top: 45px;
    }
    
    /* Footer mobile optimization */
    .footer-content {
        padding: 25px 15px;
        min-height: auto;
    }
    
    .footer-logo {
        margin-bottom: 25px;
    }
    
    .footer-logo img {
        width: 80px !important;
        height: 75px !important;
    }
    
    .footer-navigation ul {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    
    .footer-navigation a {
        font-size: 13px;
        padding: 5px 12px;
        height: 30px;
    }
    
    .footer-contact-info {
        gap: 10px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 10px 15px;
    }
    
    .footer-bottom-content {
        font-size: 11px;
        gap: 8px;
    }
    
    .footer-bottom-content span {
        padding: 0 5px;
    }
    
    .footer-separator {
        display: none !important;
    }

  
    
    .hero-quote {
        font-size: 28px;
        line-height: 0.9;
    }
    
    .hero-quote p {
        margin: 0 !important;
        padding: 0 !important;
        display: block;
        line-height: 0.9;
    }
    
    .quote-left,
    .quote-right {
        display: none;
    }
    
    .hero-child {
        width: 95%;
    }
    
    .date-content {
        padding: 0 20px;
    }
    
    .stats-container {
        padding: 0 20px;
    }
    
    .stats-number-badge {
        font-size: 48px;
        padding: 15px 30px;
    }
    
    .partner-card {
        width: 130px;
        height: 130px;
    }
    
    .contact-heading {
        font-size: 26px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
    }



    .stats-illustration {
        width: 264px;
        height: auto;
        flex-shrink: 0;
        right: auto;
        width: 150px !important;
        z-index: 9;
        position: relative;
    }


    .date-section {
        background: var(--secondary-bg);
        padding: 2px 0;
        width: 100%;
    }

    .decorative-rope-divider {
        width: 100%;
        max-width: 740px;
        margin: 0 auto;
        position: relative;
        height: 9px;
        overflow: visible;
        z-index: 5;
    }

    .decorative-rope-divider img {
        position: relative;
        right: 100px;
        top: auto;
        width: auto;
        height: auto;
        max-width: 60%;
    }

    .stats-section {
        padding: 21px 0 0px;
        background: var(--primary-bg);
        background-image: url(../../../images/bg-wave2.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }


    .main-text p {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px;
        margin-top: 60px;
        color: var(--text-dark);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .stats-heading 
    {
        text-align: center;
    }

    .stats-description p 
    {
        margin: 0 0 10px 0;
        text-align: center;
    }

    .footer-contact-info {
     
        right: auto;
    }


    .partners-section {
        position: relative;
        padding: 20px 0;
    }


    .hero-quote p, .hero-quote 
    {
        font-size: 40px !important;
        line-height: 140% !important;
    }

 .hero-section   
{
    background-position: center 5px !important;
}

.image-text-wrapper p,
.main-text p
{
    line-height: 1.40 !important;
}

.partners-heading,
.contact-heading
{
    text-align: center !important;
    font-size: 30px !important;
}


.contact-wrapper {
    padding: 0 20px !important;
}


.wpcf7 .btn-submit, .wpcf7 input.btn-submit {

    width: 100% !important;
}


}








/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== MOBILE: Disable fade animations ==================== */
@media (max-width: 768px) {
    .date-text-content p,
    .main-text p {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
        animation: none !important;
    }
}
/* ==================== END MOBILE ==================== */

