:root {
    --primary-blue: #002d52;
    --primary-blue-deep: #001b31;
    --accent-orange: #f59b3c;
    --accent-orange-dark: #ea8d26;
    --text-dark: #112031;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-soft: #f7f9fc;
    --border-soft: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 10px 30px rgba(2, 27, 52, 0.08);
    --shadow-md: 0 18px 40px rgba(2, 27, 52, 0.18);
    --shadow-lg: 0 24px 60px rgba(2, 27, 52, 0.24);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 22px;
    --container: 1220px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

a {
    text-decoration: none;
}

.nav-container,
.services-container,
.process-container,
.support-container,
.footer-container,
.footer-bottom-container,
.stats-container,
.cta-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* Loader */
.site-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(245, 155, 60, 0.12), transparent 36%), linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-box {
    text-align: center;
    position: relative;
}

.loader-box {
    min-width: 220px;
    padding: 34px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 45, 82, 0.08);
    box-shadow: 0 24px 50px rgba(2, 27, 52, 0.12);
    backdrop-filter: blur(14px);
}

.loader-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid rgba(0, 45, 82, 0.12);
    border-top-color: var(--accent-orange);
    border-right-color: var(--primary-blue);
    animation: spin 1.05s linear infinite;
}

.loader-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.loader-pulse span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
    animation: pulseDots 1.2s ease-in-out infinite;
}

.loader-pulse span:nth-child(2) {
    animation-delay: 0.15s;
}

.loader-pulse span:nth-child(3) {
    animation-delay: 0.3s;
}

.loader-text {
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 0.6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseDots {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    z-index: 1300;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 12px 30px rgba(2, 27, 52, 0.09);
}

.nav-container {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 4px;
    line-height: 1;
}

.brand-west,
.brand-way {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-west { color: var(--primary-blue); }
.brand-way { color: var(--accent-orange); }

.tagline {
    width: 100%;
    margin-top: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #475569;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-links,
.search-icon a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--primary-blue);
    font-size: 0.97rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
}

.nav-links::before,
.btn::before,
.cta-btn::before,
.wwa-btn::before,
.btn-ask::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.nav-links:hover::before,
.btn:hover::before,
.cta-btn:hover::before,
.wwa-btn:hover::before,
.btn-ask:hover::before {
    transform: translateX(120%);
}

.nav-links:hover,
.nav-links.active,
.search-icon a:hover {
    color: var(--accent-orange);
    background: rgba(245, 155, 60, 0.09);
    transform: translateY(-1px);
}

.btn-special {
    background: var(--primary-blue);
    color: var(--white) !important;
    box-shadow: 0 12px 24px rgba(0, 45, 82, 0.18);
}

.btn-special:hover {
    color: var(--white) !important;
    background: var(--accent-orange);
    box-shadow: 0 14px 28px rgba(245, 155, 60, 0.28);
}

.small-icon {
    font-size: 0.72rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 45, 82, 0.06);
}

.bar {
    display: block;
    width: 24px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--primary-blue);
    margin: 4px auto;
    transition: var(--transition);
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.slider-container,
.slide {
    position: absolute;
    inset: 0;
}

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease;
    animation: kenburns 10s ease-in-out infinite alternate;
}

.slide.active {
    opacity: 1;
}

.hero-overlay-shape {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(245, 155, 60, 0.36), rgba(245, 155, 60, 0));
    filter: blur(30px);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 940px);
    text-align: center;
    padding: 56px 0 110px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.26);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    line-height: 1.03;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.reveal-text {
    display: block;
    animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-text.delay-1 {
    animation-delay: 0.15s;
}

.hero-subtitle {
    width: min(100%, 760px);
    margin: 0 auto 34px;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.92);
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn,
.cta-btn,
.wwa-btn,
.btn-ask {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: var(--transition);
    overflow: hidden;
}

.btn {
    min-width: 190px;
}

.btn-explore {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 18px 35px rgba(245, 155, 60, 0.28);
}

.btn-explore:hover,
.cta-btn:hover,
.wwa-btn:hover,
.btn-ask:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-contact {
    border: 2px solid rgba(255,255,255,0.62);
    color: var(--white);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.btn-contact:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.14);
    border-color: var(--white);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.38);
    transition: var(--transition);
}

.dot.active {
    width: 34px;
    background: var(--accent-orange);
}

@keyframes kenburns {
    from { transform: scale(1.03); }
    to { transform: scale(1.15); }
}

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

/* Sections */
.who-we-are {
    padding: 72px 0 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wwa-wrapper {
    width: min(100% - 32px, 1420px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.34fr);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(2, 27, 52, 0.08);
}

.wwa-pattern-side {
    min-height: 500px;
    position: relative;
    background-color: #f7f9fc;
    background-image: radial-gradient(rgba(0, 45, 82, 0.16) 1.45px, transparent 1.45px);
    background-size: 22px 22px;
}

.wwa-pattern-side::before,
.wwa-pattern-side::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.wwa-pattern-side::before {
    width: 240px;
    height: 240px;
    left: -60px;
    top: 34px;
    background: radial-gradient(circle, rgba(245, 155, 60, 0.34) 0%, rgba(245, 155, 60, 0) 72%);
}

.wwa-pattern-side::after {
    width: 180px;
    height: 180px;
    right: -50px;
    bottom: 44px;
    background: radial-gradient(circle, rgba(0, 45, 82, 0.16) 0%, rgba(0, 45, 82, 0) 75%);
}

.wwa-floating-card {
    position: absolute;
    left: clamp(18px, 4vw, 44px);
    bottom: 34px;
    width: min(280px, calc(100% - 36px));
    padding: 24px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 40px rgba(2, 27, 52, 0.12);
    backdrop-filter: blur(12px);
}

.wwa-floating-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 155, 60, 0.14);
    color: var(--accent-orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.wwa-floating-card h3 {
    font-size: 1.32rem;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.wwa-floating-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.wwa-content-side {
    background: linear-gradient(135deg, #002d52 0%, #012746 70%, #02213c 100%);
    color: var(--white);
    padding: 78px clamp(24px, 5vw, 68px);
    position: relative;
}

.wwa-content-side::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -40px;
    border-radius: 38% 62% 57% 43% / 38% 40% 60% 62%;
    background: radial-gradient(circle at 30% 30%, rgba(245, 155, 60, 0.34), rgba(245, 155, 60, 0));
}

.wwa-content-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.06), transparent 35%);
    pointer-events: none;
}

.wwa-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.wwa-welcome,
.service-tag,
.support-tag,
.process-tag,
.cta-tag {
    text-transform: uppercase;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
}

.wwa-line {
    width: 62px;
    height: 2px;
    background: var(--accent-orange);
}

.wwa-title,
.service-main-title,
.support-title,
.process-title,
.cta-heading {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
}

.wwa-description p,
.card-content p,
.cta-details,
.step-text,
.footer-description,
.footer-contact-info li,
.service-subtitle,
.faq-footer-text,
.cta-lead {
    color: rgba(255,255,255,0.88);
}

.wwa-description p {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.86);
    margin-bottom: 18px;
    max-width: 830px;
}

.wwa-btn {
    margin-top: 14px;
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(245, 155, 60, 0.24);
}

.wwa-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.wwa-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.info-section-compact {
    padding-top: 72px;
}

.stats-bar {
    background: linear-gradient(135deg, #002d52 0%, #021f38 100%);
    padding: 38px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-item {
    padding: 26px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.09);
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(245, 155, 60, 0.14);
    color: var(--accent-orange);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255,255,255,0.72);
    margin-top: 6px;
}

.services-section,
.process-section,
.support-section {
    padding: 100px 0;
    background: var(--white);
}

.services-header,
.support-header,
.process-header {
    max-width: 800px;
    margin-bottom: 52px;
}

.service-main-title,
.support-title,
.process-title {
    color: var(--text-dark);
}

.service-subtitle,
.faq-footer-text,
.step-text {
    color: var(--text-muted);
}

.services-grid,
.process-grid {
    display: grid;
    gap: 28px;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.faq-card,
.contact-form-card,
.process-step-card,
.cta-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover,
.faq-card:hover,
.contact-form-card:hover,
.process-step-card:hover,
.cta-card:hover {
    box-shadow: var(--shadow-md);
}

.card-image {
    position: relative;
    height: 232px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 45, 82, 0.55), rgba(245, 155, 60, 0.12));
}

.card-content {
    padding: 28px;
}

.card-content h3,
.step-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-more i {
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-orange);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.cta-wrapper {
    padding: 40px 0 110px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 0;
}

.cta-card {
    padding: 56px 60px;
    z-index: 2;
}

.cta-heading {
    color: var(--text-dark);
}

.cta-lead {
    color: #334155;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-details {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 26px;
    max-width: 620px;
}

.cta-btn {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(0, 45, 82, 0.18);
}

.cta-floating-img {
    margin-left: -72px;
    z-index: 3;
}

.img-box {
    position: relative;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.img-box:hover img {
    transform: scale(1.08);
}

.img-label {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--primary-blue);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(2, 27, 52, 0.12);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 45, 82, 0.55), transparent 45%);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.faq-card,
.contact-form-card {
    padding: 30px;
}

.faq-list {
    list-style: none;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.faq-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.faq-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-orange);
    margin-top: 9px;
    flex-shrink: 0;
}

.faq-footer-text {
    margin-top: 18px;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.support-form input,
.support-form textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: #f8fbff;
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.support-form input:focus,
.support-form textarea:focus {
    border-color: rgba(245, 155, 60, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 155, 60, 0.08);
}

.support-form textarea {
    resize: vertical;
    min-height: 160px;
    margin-top: 14px;
}

.btn-ask {
    margin-top: 14px;
    background: var(--accent-orange);
    color: var(--white);
    width: 100%;
}

.process-grid {
    grid-template-columns: repeat(3, 1fr);
}

.process-step-card {
    padding: 34px 28px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(245, 155, 60, 0.15);
    color: var(--accent-orange-dark);
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 12px 24px rgba(245, 155, 60, 0.12);
}

.main-footer {
    background: linear-gradient(135deg, #002d52 0%, #021a30 100%);
    color: var(--white);
    padding-top: 78px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr;
    gap: 48px;
    padding-bottom: 54px;
}

.footer-logo img {
    width: 82px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-description {
    color: rgba(255,255,255,0.72);
    margin-bottom: 26px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255,255,255,0.09);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 44px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links,
.footer-contact-info {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
    display: inline-block;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.74);
}

.footer-contact-info i {
    color: var(--accent-orange);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,0.64);
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.64);
}

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

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 28px rgba(245, 155, 60, 0.28);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Scroll animations */
[data-animate],
.reveal-on-load {
    opacity: 0;
}

.reveal-on-load {
    animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-on-load.delay-1 { animation-delay: 0.15s; }
.reveal-on-load.delay-2 { animation-delay: 0.28s; }
.reveal-on-load.delay-3 { animation-delay: 0.42s; }

[data-animate] {
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

[data-animate="up"] {
    transform: translateY(42px);
}

[data-animate="left"] {
    transform: translateX(-46px);
}

[data-animate="right"] {
    transform: translateX(46px);
}

[data-animate="zoom"] {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Responsive */
@media (max-width: 1200px) {
    .brand-west,
    .brand-way {
        font-size: 1.7rem;
    }

    .nav-links,
    .search-icon a {
        padding: 10px 11px;
        font-size: 0.91rem;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 26px 22px 40px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item {
        width: min(100%, 420px);
    }

    .nav-links,
    .search-icon a {
        width: 100%;
        padding: 16px 20px;
        border-radius: 18px;
        background: rgba(0, 45, 82, 0.04);
    }

    .hero-slider {
        min-height: 82vh;
    }

    .wwa-wrapper,
    .cta-container,
    .support-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .wwa-pattern-side {
        min-height: 220px;
        background-size: 28px 28px;
    }

    .wwa-floating-card {
        left: 22px;
        bottom: 22px;
        width: min(320px, calc(100% - 44px));
    }

    .wwa-content-side {
        padding: 56px 30px;
    }

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

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

    .cta-wrapper {
        padding-top: 20px;
    }

    .cta-floating-img {
        margin-left: 0;
        margin-top: -26px;
    }

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

    .img-box {
        height: 360px;
    }

    .footer-description {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        min-height: 84px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .brand-west,
    .brand-way {
        font-size: 1.45rem;
    }

    .tagline {
        font-size: 0.66rem;
        letter-spacing: 1.5px;
    }

    .hero-content {
        padding: 30px 0 92px;
    }

    .hero-btns {
        flex-direction: column;
        width: min(100%, 340px);
        margin: 0 auto;
    }

    .who-we-are {
        padding-top: 56px;
    }

    .wwa-wrapper {
        width: min(100% - 24px, 1420px);
        border-radius: 24px;
    }

    .wwa-pattern-side {
        min-height: 168px;
        background-size: 34px 34px;
    }

    .wwa-pattern-side::before {
        width: 180px;
        height: 180px;
        top: 10px;
        left: -50px;
    }

    .wwa-pattern-side::after {
        width: 130px;
        height: 130px;
        right: -30px;
        bottom: 10px;
    }

    .wwa-floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .wwa-content-side {
        padding: 42px 18px;
    }

    .wwa-pills {
        gap: 10px;
    }

    .wwa-pills span {
        font-size: 0.88rem;
        min-height: 38px;
        padding: 8px 14px;
    }

    .btn,
    .cta-btn,
    .wwa-btn,
    .btn-ask {
        width: 100%;
    }

    .stats-container,
    .services-grid,
    .process-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-section,
    .process-section,
    .support-section {
        padding: 82px 0;
    }

    .service-card,
    .faq-card,
    .contact-form-card,
    .process-step-card,
    .cta-card {
        border-radius: 20px;
    }

    .card-image {
        height: 216px;
    }

    .cta-card {
        padding: 34px 24px;
    }

    .director-card {
        padding: 30px 22px;
    }

    .director-top {
        gap: 12px;
        flex-wrap: wrap;
    }

    .img-box {
        height: 320px;
        border-radius: 22px;
    }

    .footer-container,
    .footer-bottom-container {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials,
    .footer-contact-info li,
    .footer-bottom-container,
    .footer-bottom-links {
        justify-content: center;
    }

    .footer-contact-info li {
        text-align: left;
    }

    .footer-bottom-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .services-container,
    .process-container,
    .support-container,
    .footer-container,
    .footer-bottom-container,
    .stats-container,
    .cta-container {
        width: min(100% - 22px, var(--container));
    }

    .hero-badge {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .wwa-pattern-side {
        min-height: 144px;
        background-size: 42px 42px;
    }

    .wwa-floating-kicker {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .wwa-floating-card h3 {
        font-size: 1.15rem;
    }

    .wwa-floating-card p {
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: 2.18rem;
    }

    .wwa-content-side {
        padding: 44px 18px;
    }

    .service-main-title,
    .support-title,
    .process-title,
    .wwa-title,
    .cta-heading {
        font-size: 2rem;
    }

    .faq-card,
    .contact-form-card,
    .process-step-card,
    .card-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .loader-box {
        min-width: 0;
        width: min(100%, 270px);
        padding: 28px 22px;
    }

    .director-signature-box {
        padding: 24px 20px;
    }

    .card-content {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.director-section {
    padding: 0 0 105px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.director-section-inner {
    padding-top: 10px;
}

.director-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.director-card {
    padding: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.director-card:hover {
    box-shadow: var(--shadow-md);
}

.director-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.director-kicker {
    text-transform: uppercase;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
}

.director-line {
    width: 62px;
    height: 2px;
    background: var(--accent-orange);
}

.director-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: 28px;
    align-items: center;
}

.director-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.director-copy p {
    font-size: 1.04rem;
    color: #46566b;
    margin-bottom: 16px;
}

.director-quote {
    margin-top: 22px;
    padding-left: 18px;
    border-left: 4px solid var(--accent-orange);
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.director-signature-box {
    min-height: 100%;
    padding: 30px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #002d52 0%, #011f39 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.director-avatar {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: rgba(245, 155, 60, 0.16);
    color: var(--accent-orange);
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.director-signature-box h3 {
    font-size: 1.36rem;
    line-height: 1.3;
    margin-bottom: 6px;
}

.director-signature-box p {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* ===== Custom content blocks ===== */
.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-content h3 {
    margin-bottom: 10px;
}

.service-points {
    list-style: none;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}

.service-points li,
.contact-lines li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
}

.service-points li::before,
.contact-lines li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.service-note {
    margin-bottom: 22px;
    color: var(--text-muted);
}

.mission-grid,
.about-grid,
.contact-grid {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.mission-card,
.about-card,
.contact-card,
.contact-form-card,
.partnership-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.mission-card,
.about-card,
.contact-card,
.partnership-card {
    padding: 30px;
}

.mission-card h3,
.about-card h3,
.contact-card h3,
.partnership-card h3 {
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.mission-card p,
.about-card p,
.contact-card p,
.partnership-card p,
.contact-card li,
.about-lead {
    color: var(--text-muted);
}

.mission-icon,
.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(245, 155, 60, 0.14);
    color: var(--accent-orange-dark);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.info-section,
.about-overview,
.partnership-section {
    padding: 100px 0;
    background: var(--white);
}

.about-overview {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.info-header,
.about-header,
.partnership-header,
.contact-header {
    width: min(100% - 32px, var(--container));
    margin: 0 auto 24px;
    max-width: 860px;
}

.info-kicker,
.about-kicker,
.contact-kicker,
.partnership-kicker {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
    margin-bottom: 14px;
}

.info-title,
.about-title,
.partnership-title,
.contact-title,
.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.info-subtitle,
.about-subtitle,
.partnership-subtitle,
.contact-subtitle,
.page-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.about-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.about-lead {
    font-size: 1.08rem;
    margin-bottom: 18px;
}

.about-page-visual {
    min-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-page-visual img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.about-page-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 45, 82, 0.55), transparent 52%);
}

.visual-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 10px 24px rgba(2, 27, 52, 0.12);
}

.partnership-section {
    background: linear-gradient(135deg, #002d52 0%, #021a30 100%);
}

.partnership-card {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}

.partnership-kicker,
.partnership-title,
.partnership-subtitle,
.partnership-card h3,
.partnership-card p {
    color: var(--white);
}

.partnership-subtitle,
.partnership-card p {
    opacity: 0.86;
}

.page-hero {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(rgba(2, 27, 52, 0.68), rgba(2, 27, 52, 0.72)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, 880px);
    text-align: center;
    padding: 110px 0 70px;
}

.page-hero-badge {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero-title,
.page-hero-subtitle {
    color: var(--white);
}

.page-hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-lines {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.contact-lines li::before {
    top: 9px;
}

.contact-links {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-links a,
.inline-link {
    color: var(--primary-blue);
    font-weight: 700;
    transition: var(--transition);
}

.contact-links a:hover,
.inline-link:hover {
    color: var(--accent-orange);
}

.contact-card .cta-btn {
    margin-top: 20px;
}

.footer-contact-info a,
.footer-links a,
.footer-bottom-links a {
    color: inherit;
}

@media (max-width: 1024px) {
    .services-grid,
    .mission-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-page-visual img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .mission-card,
    .about-card,
    .contact-card,
    .partnership-card {
        padding: 24px;
    }

    .page-hero-content {
        padding: 92px 0 56px;
    }

    .info-section,
    .about-overview,
    .partnership-section,
    .contact-section {
        padding: 82px 0;
    }
}


.field-group {
    display: grid;
    gap: 10px;
}

.field-group label {
    font-weight: 700;
    color: var(--primary-blue);
}

.field-group label span {
    font-weight: 600;
    color: var(--text-muted);
}

.checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 6px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-orange);
}

.whatsapp-row.is-hidden {
    display: none;
}

.file-field-group {
    margin-top: 14px;
}

.support-form input[type="file"] {
    padding: 16px 18px;
    background: #f8fbff;
    border: 1px dashed rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.file-helper {
    color: var(--text-muted);
    display: block;
    margin-top: -2px;
}

.selected-file {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 45, 82, 0.04);
    color: var(--primary-blue);
    font-weight: 700;
    word-break: break-word;
}

.gmail-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 45, 82, 0.05), rgba(245, 155, 60, 0.09));
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.gmail-note i {
    color: var(--accent-orange-dark);
    font-size: 1.1rem;
    margin-top: 3px;
}

.gmail-note p {
    color: var(--text-muted);
    margin: 0;
}

.form-status {
    margin-top: 14px;
    color: var(--primary-blue);
    font-weight: 700;
}

.form-status.is-error {
    color: #c2410c;
}

@media (max-width: 768px) {
    .checkbox-row {
        align-items: flex-start;
    }

    .gmail-note {
        grid-template-columns: 1fr;
    }
}


/* === stability + spacing fixes === */
.hero-btns,
.contact-links,
.footer-bottom-links,
.footer-socials,
.wwa-footer,
.cta-button-area {
    gap: 14px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 45, 82, 0.04);
}

.contact-links a:hover {
    background: rgba(245, 155, 60, 0.08);
}

.contact-form-card {
    overflow: hidden;
}

.support-form {
    display: grid;
    gap: 16px;
}

.support-form textarea,
.file-field-group,
.checkbox-row,
.gmail-note,
.form-status,
.btn-ask {
    margin-top: 0;
}

.support-form input,
.support-form textarea,
.support-form input[type='file'] {
    min-height: 56px;
}

.support-form textarea {
    min-height: 150px;
}

.inline-link,
.footer-contact-info span,
.footer-contact-info a {
    word-break: break-word;
}

.site-loader {
    pointer-events: none;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-item.search-icon {
        display: none;
    }

    .nav-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-btns {
        gap: 12px;
    }

    .btn,
    .cta-btn,
    .wwa-btn,
    .btn-ask,
    .contact-links a {
        min-height: 52px;
    }

    .contact-grid,
    .mission-grid,
    .services-grid,
    .process-grid,
    .stats-container,
    .footer-container {
        gap: 20px;
    }

    .contact-card,
    .contact-form-card,
    .mission-card,
    .service-card,
    .process-step-card,
    .director-card,
    .partnership-card {
        border-radius: 20px;
    }

    .contact-title,
    .director-title,
    .wwa-title,
    .service-main-title,
    .process-title,
    .support-title,
    .cta-heading,
    .about-title,
    .partnership-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .contact-card,
    .contact-form-card {
        padding: 22px;
    }

    .support-form {
        gap: 14px;
    }

    .checkbox-row {
        margin: 2px 0;
    }

    .gmail-note {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .footer-contact-info li {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .services-container,
    .process-container,
    .support-container,
    .footer-container,
    .footer-bottom-container,
    .stats-container,
    .cta-container,
    .contact-grid,
    .mission-grid,
    .about-grid,
    .director-container,
    .info-header,
    .about-header,
    .partnership-header,
    .contact-header {
        width: min(100% - 20px, var(--container));
    }

    .hero-content {
        width: min(100% - 20px, 940px);
    }

    .nav-links,
    .search-icon a {
        padding: 15px 16px;
    }

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

    .hero-subtitle,
    .contact-subtitle,
    .info-subtitle,
    .about-subtitle,
    .partnership-subtitle {
        font-size: 0.96rem;
    }

    .contact-card,
    .contact-form-card,
    .mission-card,
    .director-card,
    .partnership-card,
    .card-content {
        padding: 18px;
    }

    .footer-socials {
        flex-wrap: wrap;
    }

    .loader-ring {
        width: 74px;
        height: 74px;
    }

    .loader-pulse span {
        width: 8px;
        height: 8px;
    }
}


/* Final reliability + spacing fixes */
.site-loader { display: none !important; }
body.loading { overflow: auto !important; }

.nav-menu {
    gap: 10px;
}

.nav-links {
    min-height: 46px;
}

.btn-special {
    padding-inline: 18px;
}

.hero-content {
    width: min(100% - 28px, 940px);
}

.wwa-wrapper {
    align-items: stretch;
}

.wwa-pattern-side {
    position: relative;
    overflow: hidden;
}

.wwa-floating-card {
    max-width: 280px;
}

.contact-section,
.support-section {
    padding: 90px 0;
}

.cv-upload-grid,
.support-grid {
    align-items: start;
}

.cv-upload-form,
.support-form {
    gap: 14px;
}

.form-row {
    gap: 16px;
}

.support-form input,
.support-form textarea,
.support-form .file-input-wrap {
    margin-top: 0;
}

.file-input-wrap {
    padding: 16px 18px;
    border-radius: 16px;
}

.selected-file-name,
.form-status {
    margin-top: 10px;
    line-height: 1.5;
}

.footer-contact-info a,
.footer-bottom-links a {
    word-break: break-word;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 12px;
        padding: 24px 18px 36px;
    }

    .nav-item {
        width: min(100%, 460px);
    }

    .hero-slider {
        min-height: 78vh;
    }

    .wwa-wrapper {
        grid-template-columns: 1fr;
    }

    .wwa-pattern-side {
        min-height: 200px;
        background-size: 30px 30px;
    }

    .wwa-floating-card {
        position: absolute;
        right: 20px;
        bottom: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 12px;
    }

    .nav-links,
    .btn,
    .cta-btn,
    .wwa-btn,
    .btn-ask {
        width: 100%;
    }

    .hero-content {
        padding: 26px 0 86px;
    }

    .hero-title,
    .page-hero-title {
        line-height: 1.08;
    }

    .wwa-pattern-side {
        min-height: 150px;
        background-size: 34px 34px;
    }

    .wwa-content-side {
        padding: 38px 20px;
    }

    .wwa-title,
    .service-main-title,
    .support-title,
    .process-title,
    .cta-heading,
    .director-title,
    .about-title,
    .info-title,
    .partnership-title {
        font-size: 2rem;
    }

    .director-card,
    .contact-form-card,
    .faq-card,
    .mission-card,
    .partnership-card,
    .about-card,
    .cta-card,
    .process-step-card,
    .service-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .director-grid,
    .cv-upload-grid,
    .support-grid,
    .about-grid,
    .mission-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .director-signature-box {
        margin-top: 8px;
    }

    .footer-container {
        gap: 34px;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .services-container,
    .process-container,
    .support-container,
    .footer-container,
    .footer-bottom-container,
    .stats-container,
    .cta-container,
    .info-section,
    .about-overview,
    .director-container,
    .contact-container {
        width: min(100% - 18px, var(--container));
    }

    .hero-title,
    .page-hero-title {
        font-size: 2rem;
    }

    .hero-badge,
    .page-hero-badge {
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .slider-dots {
        gap: 8px;
        bottom: 22px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 26px;
    }

    .wwa-pattern-side {
        background-size: 38px 38px;
    }

    .contact-section,
    .support-section,
    .services-section,
    .process-section,
    .director-section,
    .info-section,
    .about-overview,
    .partnership-section {
        padding: 72px 0;
    }

    .footer-contact-info li {
        align-items: flex-start;
    }
}


/* ===== Final spacing and footer refinements ===== */
.footer-logo img {
    filter: none !important;
    width: 72px;
    height: auto;
}

.partnership-card .cta-btn {
    margin-top: 18px;
}

.hero-btns {
    margin-top: 10px;
}

.main-footer {
    overflow: hidden;
}

.footer-contact-info span,
.footer-contact-info a {
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .cta-wrapper {
        padding: 20px 0 64px;
    }

    .cta-floating-img {
        margin-top: 16px !important;
    }

    .img-box {
        height: 310px;
    }

    .about-page-visual {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 6px 0 42px;
    }

    .cta-floating-img {
        margin-top: 12px !important;
    }

    .img-box {
        height: 250px;
    }

    .about-page-visual {
        min-height: 0;
        border-radius: 24px;
    }

    .about-page-visual img {
        min-height: 260px;
        height: 260px;
    }

    .director-section {
        padding: 0 0 44px;
    }

    .director-section-inner {
        padding-top: 0;
    }

    .contact-section,
    .info-section,
    .about-overview,
    .partnership-section,
    .services-section,
    .process-section,
    .support-section {
        padding: 52px 0;
    }

    .main-footer {
        padding-top: 54px;
    }

    .footer-container {
        gap: 26px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 64px;
    }

    .footer-col.contact-col,
    .footer-col.links-col,
    .footer-col.about-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .partnership-card {
        padding: 22px 18px;
    }

    .partnership-card .cta-btn {
        margin-top: 14px;
    }

    .cta-wrapper {
        padding: 0 0 34px;
    }

    .img-box {
        height: 220px;
        border-radius: 20px;
    }

    .about-page-visual img {
        min-height: 220px;
        height: 220px;
    }

    .director-section {
        padding: 0 0 34px;
    }

    .contact-section,
    .info-section,
    .about-overview,
    .partnership-section,
    .services-section,
    .process-section,
    .support-section {
        padding: 44px 0;
    }

    .main-footer {
        padding-top: 46px;
    }

    .footer-container,
    .footer-bottom-container {
        width: min(100% - 16px, var(--container));
    }

    .footer-logo img {
        width: 58px;
    }

    .footer-contact-info li {
        gap: 10px;
    }
}

/* ===== Targeted final mobile fixes ===== */
.nav-menu {
    z-index: 1251;
}

.menu-toggle {
    position: relative;
    z-index: 1252;
}

.wwa-floating-kicker,
.visual-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-menu {
        background: #ffffff;
    }

    .nav-links.btn-special {
        background: linear-gradient(135deg, var(--primary-blue), #013a67) !important;
        color: var(--white) !important;
        box-shadow: 0 12px 24px rgba(0, 45, 82, 0.18);
    }

    .nav-links.btn-special i {
        color: inherit;
    }
}

@media (max-width: 768px) {
    .wwa-floating-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .wwa-floating-kicker,
    .visual-badge {
        font-size: 0.74rem;
        letter-spacing: 1px;
        padding: 8px 12px;
    }

    .visual-badge {
        left: 16px;
        top: 16px;
        max-width: calc(100% - 32px);
    }

    .footer-col,
    .footer-description,
    .footer-links,
    .footer-links li,
    .footer-bottom-container,
    .footer-bottom-links {
        text-align: center;
    }

    .footer-socials,
    .footer-bottom-links {
        justify-content: center;
    }

    .footer-contact-info li {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px;
        margin-bottom: 18px;
    }

    .footer-contact-info i {
        margin-top: 0;
    }

    .footer-contact-info span,
    .footer-contact-info a,
    .footer-description {
        text-align: center !important;
    }
}


/* Services + testimonials pages */
.about-page-hero {
    background: linear-gradient(rgba(2, 27, 52, 0.68), rgba(2, 27, 52, 0.74)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.services-page-hero {
    min-height: 62vh;
    background: linear-gradient(rgba(2, 27, 52, 0.68), rgba(2, 27, 52, 0.74)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.testimonials-page-hero {
    min-height: 62vh;
    background: linear-gradient(rgba(2, 27, 52, 0.7), rgba(2, 27, 52, 0.76)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.services-page-main {
    padding-top: 96px;
}

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

.process-story-section,
.countries-section,
.testimonial-preview-section,
.testimonials-showcase-section,
.testimonial-values-section {
    padding: 100px 0;
    background: var(--white);
}

.process-story-container,
.countries-container,
.testimonial-preview-container,
.testimonials-showcase-container,
.testimonial-values-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.process-story-header,
.countries-header,
.testimonial-preview-header,
.testimonials-showcase-header {
    max-width: 900px;
    margin-bottom: 34px;
}

.process-story-title,
.countries-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--text-dark);
}

.countries-kicker {
    text-transform: uppercase;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--primary-blue);
}

.process-story-card,
.countries-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 42px;
    box-shadow: var(--shadow-sm);
}

.process-story-card p {
    font-size: 1.02rem;
    color: #24364b;
    margin-bottom: 28px;
    line-height: 1.9;
}

.process-story-card p:last-child {
    margin-bottom: 0;
}

.countries-grid-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 90px;
}

.countries-grid-list ul {
    list-style: disc;
    padding-left: 24px;
}

.countries-grid-list li {
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: var(--text-dark);
}

.testimonial-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-mini-card,
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.testimonial-mini-card p,
.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5c6d84;
    margin-bottom: 22px;
}

.testimonial-mini-card h3,
.testimonial-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.testimonial-preview-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.testimonial-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 18px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(2, 27, 52, 0.08);
    color: var(--primary-blue);
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    transform: translateY(-2px);
    color: var(--accent-orange);
}

.testimonial-viewport {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-card {
    min-height: 196px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(17, 32, 49, 0.45);
    background: transparent;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

@media (max-width: 1024px) {
    .services-grid-expanded,
    .testimonial-preview-grid,
    .testimonial-slide {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-slide article:last-child {
        grid-column: span 2;
    }

    .countries-grid-list {
        gap: 24px 36px;
    }
}

@media (max-width: 768px) {
    .services-page-main,
    .process-story-section,
    .countries-section,
    .testimonial-preview-section,
    .testimonials-showcase-section,
    .testimonial-values-section {
        padding: 78px 0;
    }

    .process-story-card,
    .countries-card,
    .testimonial-mini-card,
    .testimonial-card {
        padding: 24px;
        border-radius: 22px;
    }

    .services-grid-expanded,
    .testimonial-preview-grid,
    .testimonial-slide,
    .countries-grid-list {
        grid-template-columns: 1fr;
    }

    .testimonial-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-arrow {
        display: none;
    }

    .testimonial-slide article:last-child {
        grid-column: auto;
    }

    .testimonial-card {
        min-height: auto;
    }
}


/* Final mobile polish fixes */
.service-card .card-image {
    background: linear-gradient(180deg, #eef3f8 0%, #d9e5f1 100%);
}

.card-image img {
    color: transparent;
}

.service-card .card-content h3,
.testimonial-card h3,
.testimonial-mini-card h3,
.process-story-title,
.countries-title {
    overflow-wrap: anywhere;
}

.process-story-card p,
.countries-grid-list li,
.testimonial-mini-card p,
.testimonial-card p,
.service-card .card-content p {
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 54vh;
    }

    .services-page-main,
    .process-story-section,
    .countries-section,
    .testimonial-preview-section,
    .testimonials-showcase-section,
    .testimonial-values-section {
        padding: 62px 0;
    }

    .services-grid-expanded {
        gap: 20px;
    }

    .service-card .card-image {
        height: 210px;
    }

    .service-card .card-content h3 {
        font-size: 1.28rem;
        line-height: 1.28;
    }

    .service-card .card-content p,
    .process-story-card p,
    .countries-grid-list li,
    .testimonial-mini-card p,
    .testimonial-card p {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .process-story-card p {
        margin-bottom: 22px;
    }

    .countries-grid-list {
        gap: 10px;
    }

    .countries-grid-list ul {
        padding-left: 20px;
    }

    .countries-grid-list li {
        margin-bottom: 12px;
    }

    .testimonial-dots {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .page-hero-content {
        width: min(100% - 22px, 900px);
        padding: 34px 0 52px;
    }

    .page-hero-title {
        font-size: 2rem;
        line-height: 1.08;
    }

    .page-hero-subtitle {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .process-story-card,
    .countries-card,
    .testimonial-mini-card,
    .testimonial-card {
        padding: 20px;
    }

    .service-card .card-image {
        height: 190px;
    }

    .service-card .card-content {
        padding: 22px 18px;
    }

    .service-card .card-content h3 {
        font-size: 1.18rem;
        line-height: 1.3;
    }

    .service-card .card-content p,
    .process-story-card p,
    .countries-grid-list li,
    .testimonial-mini-card p,
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.66;
    }

    .testimonial-mini-card h3,
    .testimonial-card h3 {
        font-size: 1.08rem;
        line-height: 1.3;
    }

    .testimonial-dots {
        gap: 8px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}
