/* ========================================
   WOYOFAL — Styles
   ======================================== */

:root {
    --wf-primary: #0066cc;
    --wf-primary-dark: #004a99;
    --wf-accent: #f39c12;
    --wf-accent-dark: #d68910;
    --wf-dark: #030d28;
    --wf-text: #333;
    --wf-text-light: #666;
    --wf-bg: #fff;
    --wf-bg-light: #f5f7fa;
    --wf-border: #e0e6ed;
    --wf-radius: 12px;
    --wf-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --wf-transition: .3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--wf-text);
    background: var(--wf-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ========================================
   NAVBAR
   ======================================== */
.wf-navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.wf-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 72px;
}

.wf-navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.wf-navbar-logo img {
    height: 64px;
    width: auto;
}

.wf-nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.wf-nav-link {
    padding: 8px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--wf-nav-pill-bg, #008999);
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    transition: var(--wf-transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.wf-nav-link:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.wf-nav-return {
    margin-left: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e87a1e;
    background: #e87a1e;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: var(--wf-transition);
}

.wf-nav-return:hover {
    background: #d06a12;
    border-color: #d06a12;
    color: #fff;
}

.wf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.wf-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--wf-transition);
}

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

/* ========================================
   HERO
   ======================================== */
.wf-hero {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
    z-index: 1;
}

.wf-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.wf-hero-slide.active {
    opacity: 1;
}

.wf-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.wf-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.wf-hero-dot.active {
    background: #fff;
}

/* ========================================
   BUTTONS
   ======================================== */
.wf-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: var(--wf-transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.wf-btn-primary {
    background: var(--wf-accent);
    color: #fff;
}

.wf-btn-primary:hover {
    background: var(--wf-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.35);
}

.wf-btn-accent {
    background: teal;
    color: #fff;
}

.wf-btn-accent:hover {
    background: #006d6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.35);
}

.wf-link {
    color: var(--wf-primary);
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--wf-transition);
}

.wf-link:hover {
    color: var(--wf-accent);
    gap: 10px;
}

/* ========================================
   SECTIONS
   ======================================== */
.wf-section {
    padding: 70px 0;
}

.wf-bg-light {
    background: var(--wf-bg-light);
}

.wf-bg-light .wf-split-text h2 {
    color: teal;
}

.wf-bg-light .wf-btn-primary {
    background: teal;
    color: #fff;
}

.wf-bg-light .wf-btn-primary:hover {
    background: #006d6d;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.35);
}

.wf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.wf-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wf-bg-light);
    margin-bottom: 10px;
}

.wf-section-header p {
    color: var(--wf-bg-light);
    font-size: 1.05rem;
}

/* ========================================
   FAQ CARDS (Home)
   ======================================== */
.wf-section.wf-faq-cards {
    background-color: #f4f5f7;
}

.wf-faq-cards .wf-section-header h2 {
    color: #0e8fa2;
}

.wf-faq-cards .wf-section-header p {
    color: #5d6773;
}

.wf-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wf-faq-card {
    background: #ffffff;
    border-radius: 0;
    padding: 28px 24px 24px;
    box-shadow: none;
    transition: var(--wf-transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #eceff3;
    min-height: 255px;
}

.wf-faq-card:hover {
    background: #4ea8b6;
    border-color: #4ea8b6;
}

.wf-faq-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.wf-faq-icon i {
    color: #0e8fa2;
    font-size: 2.5rem;
}

.wf-faq-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #db991f;
    margin-bottom: 10px;
    line-height: 1.18;
    text-transform: uppercase;
}

.wf-faq-card p {
    color: #27323d;
    font-size: 0.96rem;
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.45;
}

.wf-faq-grid .wf-faq-card .wf-link {
    color: #0e8fa2;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.86rem;
}

.wf-faq-grid .wf-faq-card .wf-link:hover {
    color: #0b6f7b;
    opacity: 0.9;
}

.wf-faq-card:hover h3,
.wf-faq-card:hover p,
.wf-faq-card:hover .wf-link,
.wf-faq-card:hover .wf-faq-icon i {
    color: #ffffff;
}

/* ========================================
   SPLIT SECTIONS (Nouveau client / Recharger)
   ======================================== */
.wf-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wf-split-reverse {
    flex-direction: row-reverse;
}

.wf-split-image {
    flex: 1;
    border-radius: var(--wf-radius);
    overflow: hidden;
}

.wf-split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--wf-radius);
}

.wf-split-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--wf-bg-light), #dce3ec);
    border-radius: var(--wf-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-split-placeholder i {
    font-size: 4rem;
    color: var(--wf-primary);
    opacity: 0.3;
}

.wf-split-text {
    flex: 1;
}

.wf-split-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wf-dark);
    margin-bottom: 16px;
}

.wf-split-text p {
    color: var(--wf-text-light);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.wf-split-section-blue {
    background-color: #00388d;
    padding: 0;
}

.wf-split-section-blue .wf-split-text h2 {
    color: #ffffff;
}

.wf-split-section-blue .wf-split-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   COMMUNITY / SOCIAL
   ======================================== */
.wf-community {
    background: #ffffff;
}

.wf-community .wf-section-header h2 {
    color: teal;
}

.wf-community .wf-section-header p {
    color: #1f6f6f;
}

.wf-community .wf-section-header {
    text-align: center;
    margin-bottom: 34px;
}

.wf-community .wf-social-grid {
    justify-content: center;
}

.wf-social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.wf-social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 72px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--wf-transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.wf-social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.wf-social-card i { font-size: 2rem; }

.wf-community .wf-social-card span {
    display: none;
}

.wf-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wf-social-tiktok { background: #000; }
.wf-social-twitter { background: #1a1a1a; }
.wf-social-whatsapp { background: #25d366; }
.wf-social-youtube { background: #ff0000; }
.wf-social-facebook { background: #1877f2; }
.wf-social-linkedin { background: #0a66c2; }

/* ========================================
   PARTNERS
   ======================================== */
.wf-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.wf-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: var(--wf-transition);
    filter: grayscale(0.3);
}

.wf-partner-logo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.wf-partner-logo img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
}

.wf-partners .wf-partners-header {
    background: #118f9f;
    margin-bottom: 34px;
    padding: 20px 24px;
    text-align: center;
}

.wf-partners .wf-partners-header h2 {
    color: #ffffff;
    margin-bottom: 0;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.wf-page-header {
    background-color: #0a1e4a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 112px 0 56px;
    text-align: center;
    position: relative;
}

.wf-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 40, 0.74);
}

.wf-page-header .wf-container {
    position: relative;
    z-index: 1;
}

.wf-page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.wf-page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}


/* ========================================
   PAGE A PROPOS
   ======================================== */
.wf-apropos {
    background: #f4f6f8;
}

.wf-apropos-intro {
    background: #ffffff;
    border-left: 6px solid #118f9f;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 26px;
}

.wf-apropos-intro h2 {
    color: #0d3f8a;
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.wf-apropos-intro p {
    color: #374151;
    line-height: 1.7;
}

.wf-apropos-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 26px;
}

.wf-apropos-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.wf-apropos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 26px;
}

.wf-apropos-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.wf-apropos-block h3 {
    color: #118f9f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wf-apropos-block p,
.wf-apropos-block li {
    color: #334155;
    line-height: 1.65;
}

.wf-apropos-block ul,
.wf-apropos-block ol {
    margin: 0 0 10px 18px;
}

@media (max-width: 992px) {
    .wf-apropos-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ LIST (Page FAQ)
   ======================================== */
.wf-faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-faq-item {
    background: var(--wf-bg);
    border-radius: 16px;
    border: 1px solid #d8dee6;
    overflow: hidden;
    transition: var(--wf-transition);
}

.wf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.wf-faq-q-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wf-primary);
}

.wf-faq-q-icon i {
    color: #fff;
    font-size: 1rem;
}

.wf-faq-q-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.wf-faq-right-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 143, 159, 0.12);
    color: #118f9f;
}

.wf-faq-right-icon i {
    font-size: 0.85rem;
}

.wf-faq-right-image {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dbe3eb;
    background: #fff;
}

.wf-faq-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wf-faq-arrow {
    color: var(--wf-text-light);
    transition: var(--wf-transition);
}

.wf-faq-item.open .wf-faq-arrow {
    transform: rotate(180deg);
    color: var(--wf-primary);
}

.wf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.wf-faq-item.open .wf-faq-answer {
    max-height: 2200px;
    padding: 0 24px 24px 24px;
}

.wf-faq-answer h2,
.wf-faq-answer h3,
.wf-faq-answer h4,
.wf-faq-answer strong.wf-faq-section {
    display: block;
    background: #0f8a8d;
    color: #fff;
    padding: 6px 10px;
    margin: 14px 0 10px;
    font-weight: 700;
}

.wf-faq-answer p {
    margin: 0 0 12px;
}

.wf-faq-answer p > strong:first-child {
    display: block;
    background: #0f8a8d;
    color: #fff;
    padding: 6px 10px;
    margin: 14px 0 10px;
}

.wf-faq-answer ul,
.wf-faq-answer ol {
    margin: 0 0 10px 18px;
}

.wf-faq-answer li {
    margin-bottom: 4px;
}

.wf-faq-answer li::marker {
    color: #4b5563;
}

.wf-faq-answer-right-image {
    float: right;
    width: 92px;
    height: 92px;
    margin: 6px 0 10px 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbe3eb;
    background: #fff;
}

.wf-faq-answer-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   TABLE (Tarifs)
   ======================================== */
.wf-table-wrap {
    overflow-x: auto;
}

.wf-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--wf-radius);
    overflow: hidden;
    box-shadow: var(--wf-shadow);
}

.wf-table thead {
    background: var(--wf-primary);
    color: #fff;
}

.wf-table th,
.wf-table td {
    padding: 16px 24px;
    text-align: left;
    font-size: 0.92rem;
}

.wf-table th {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.wf-table tbody tr {
    border-bottom: 1px solid var(--wf-border);
    transition: var(--wf-transition);
}

.wf-table tbody tr:hover {
    background: var(--wf-bg-light);
}

.wf-table tbody tr:last-child {
    border-bottom: none;
}

.wf-table tbody tr.wf-group-title-row td {
    text-align: center;
    font-weight: 700;
    background: rgba(16, 111, 192, 0.08);
}

.wf-simulateur-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    justify-content: center;
}

/* ========================================
   MEDIA GRID
   ======================================== */
.wf-subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wf-dark);
    margin-bottom: 24px;
}

.wf-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wf-media-card {
    border-radius: var(--wf-radius);
    overflow: hidden;
    box-shadow: var(--wf-shadow);
    background: var(--wf-bg);
    transition: var(--wf-transition);
}

.wf-media-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.wf-media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wf-media-open {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.wf-media-video iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.wf-media-yt-fallback {
    display: block;
    border-top: 1px solid #e5e7eb;
    text-decoration: none;
    color: #0d3f8a;
}

.wf-media-yt-fallback img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.wf-media-yt-fallback span {
    display: block;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

.wf-media-yt-link {
    position: relative;
}

.wf-media-yt-link::after {
    content: "\f144";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.wf-media-yt-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    font-weight: 600;
}

.wf-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.wf-lightbox.active {
    display: flex;
}

.wf-lightbox-figure {
    margin: 0;
    max-width: min(94vw, 1200px);
    max-height: 88vh;
}

.wf-lightbox-figure img {
    max-width: 100%;
    max-height: calc(88vh - 42px);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.wf-lightbox-figure figcaption {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.wf-lightbox-close,
.wf-lightbox-nav {
    position: absolute;
    border: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--wf-transition);
}

.wf-lightbox-close:hover,
.wf-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.wf-lightbox-close {
    top: 20px;
    right: 20px;
}

.wf-lightbox-prev {
    left: 18px;
}

.wf-lightbox-next {
    right: 18px;
}

.wf-media-caption {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wf-text);
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.wf-page-image {
    margin-bottom: 32px;
    border-radius: var(--wf-radius);
    overflow: hidden;
}

.wf-page-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.wf-page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--wf-text);
}

.wf-page-content h2 {
    font-size: 1.5rem;
    color: var(--wf-dark);
    margin: 24px 0 12px;
}

.wf-page-content p {
    margin-bottom: 16px;
}

/* ========================================
   UTILITIES
   ======================================== */
.wf-text-muted {
    color: var(--wf-text-light);
    text-align: center;
    font-style: italic;
    padding: 32px 0;
}

/* ========================================
   FOOTER
   ======================================== */
.wf-footer {
    background: #118f9f;
    color: rgba(255,255,255,0.8);
    padding-top: 36px;
}

.wf-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.1fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.wf-footer-brand img {
    height: 78px;
    margin-bottom: 0;
}

.wf-footer-brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.wf-footer-about p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.wf-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wf-footer ul li {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.wf-footer ul li i {
    margin-right: 8px;
    color: var(--wf-accent);
}

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

.wf-footer a:hover {
    color: #ffffff;
}

.wf-footer-contact-list li {
    font-size: 0.95rem;
}

.wf-footer-contact-list strong {
    color: #ffffff;
}

.wf-footer-social {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.wf-footer-social a {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--wf-transition);
    font-size: 0.72rem;
}

.wf-footer-social a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.wf-footer-newsletter-col h4 {
    text-transform: none;
}

.wf-footer-newsletter {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin-top: 8px;
}

.wf-footer-newsletter input {
    flex: 1;
    min-width: 0;
    border: none;
    background: #5f6668;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.wf-footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.7);
}

.wf-footer-newsletter button {
    border: none;
    background: #2ecc71;
    color: #fff;
    width: 44px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.wf-follow-title {
    margin-top: 12px;
    margin-bottom: 6px;
}

.wf-newsletter-messages {
    margin-top: 8px;
    max-width: 320px;
}

.wf-newsletter-message {
    font-size: 0.78rem;
    line-height: 1.35;
    padding: 6px 8px;
    border-radius: 6px;
    margin: 0 0 6px;
}

.wf-newsletter-success {
    background: rgba(46, 204, 113, 0.2);
    color: #eafff1;
}

.wf-newsletter-error {
    background: rgba(231, 76, 60, 0.2);
    color: #ffe9e6;
}

.wf-newsletter-info {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.wf-footer-bottom {
    margin-top: 18px;
    padding: 10px 0;
    border-top: none;
    text-align: center;
    font-size: 0.95rem;
    background: #e9e9e9;
    color: #344054;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .wf-mobile-toggle {
        display: flex;
    }

    .wf-nav-content {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .wf-navbar-logo {
        margin-right: auto;
    }

    .wf-navbar-logo img {
        height: 52px;
    }

    .wf-nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(14, 133, 133, 0.95);
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        gap: 6px;
    }

    .wf-nav-menu.active {
        display: flex;
    }

    .wf-nav-link {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-color: rgba(255,255,255,0.5);
        display: block;
        text-align: center;
    }

    .wf-nav-return {
        margin-left: auto;
        font-size: 0.72rem;
        padding: 8px 12px;
    }

    .wf-hero {
        min-height: 300px;
    }

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

    .wf-split,
    .wf-split-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .wf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

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

@media (max-width: 640px) {
    .wf-footer-grid {
        grid-template-columns: 1fr;
    }
    .wf-navbar-logo img {
        height: 44px;
    }

    .wf-hero {
        min-height: 220px;
    }

    .wf-section {
        padding: 50px 0;
    }

    .wf-section-header h2 {
        font-size: 1.6rem;
    }

    .wf-faq-grid {
        grid-template-columns: 1fr;
    }

    .wf-split-text h2 {
        font-size: 1.5rem;
    }

    .wf-social-card {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .wf-media-grid {
        grid-template-columns: 1fr;
    }

    .wf-page-header h1 {
        font-size: 1.6rem;
    }

    .wf-page-header {
        padding: 90px 0 42px;
    }
}
