/* ============================================================
   FYNEST INNOVATION HUB — Plugin Stylesheet
   Version: 1.0.0
   Author:  GivenBiz
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────── */
.fynest-wrap *,
.fynest-wrap *::before,
.fynest-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fynest-wrap {
    --fh-primary:        #0f4c81;
    --fh-primary-dark:   #0a3460;
    --fh-primary-light:  #1a6eb5;
    --fh-accent:         #f59e0b;
    --fh-accent-dark:    #d97706;
    --fh-bg:             #ffffff;
    --fh-bg-alt:         #f8fafc;
    --fh-card:           #ffffff;
    --fh-border:         #e2e8f0;
    --fh-text:           #1e293b;
    --fh-text-muted:     #64748b;
    --fh-white:          #ffffff;
    --fh-shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --fh-shadow-md:      0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --fh-shadow-lg:      0 10px 25px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.08);
    --fh-shadow-xl:      0 20px 40px rgba(0,0,0,.16), 0 8px 16px rgba(0,0,0,.08);
    --fh-radius:         12px;
    --fh-radius-sm:      8px;
    --fh-radius-lg:      20px;
    --fh-transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fh-container:      1200px;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--fh-text);
    line-height: 1.6;
    background: var(--fh-bg);
    -webkit-font-smoothing: antialiased;
}

/* ─── GLOBAL RESETS WITHIN WRAP ─────────────────────────── */
.fynest-wrap a { text-decoration: none; color: inherit; }
.fynest-wrap ul { list-style: none; }
.fynest-wrap img { max-width: 100%; height: auto; display: block; }
.fynest-wrap p { margin: 0; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.fh-container {
    width: 100%;
    max-width: var(--fh-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════════ */
.fh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fh-border);
    box-shadow: var(--fh-shadow-sm);
    transition: var(--fh-transition);
}

.fh-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.fh-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.fh-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--fh-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.35);
}

.fh-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.fh-logo-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--fh-primary);
    letter-spacing: -0.02em;
}

.fh-logo-text span {
    font-size: 10px;
    font-weight: 500;
    color: var(--fh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Nav Links */
.fh-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fh-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--fh-text);
    padding: 8px 14px;
    border-radius: var(--fh-radius-sm);
    transition: var(--fh-transition);
    white-space: nowrap;
}

.fh-nav-links a:hover {
    color: var(--fh-primary);
    background: rgba(15,76,129,0.06);
}

/* Nav CTA */
.fh-nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hamburger */
.fh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--fh-radius-sm);
    transition: var(--fh-transition);
    background: none;
    border: none;
}

.fh-hamburger:hover { background: rgba(15,76,129,0.06); }

.fh-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fh-text);
    border-radius: 2px;
    transition: var(--fh-transition);
}

/* Mobile Menu */
.fh-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--fh-border);
    padding: 16px 24px 24px;
    box-shadow: var(--fh-shadow-lg);
    flex-direction: column;
    gap: 4px;
}

.fh-mobile-menu.is-open { display: flex; }

.fh-mobile-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--fh-text);
    padding: 12px 16px;
    border-radius: var(--fh-radius-sm);
    transition: var(--fh-transition);
}

.fh-mobile-menu a:hover {
    background: rgba(15,76,129,0.06);
    color: var(--fh-primary);
}

.fh-mobile-menu .fh-btn-primary {
    margin-top: 8px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.fh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 24px;
    border-radius: var(--fh-radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--fh-transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.fh-btn svg { flex-shrink: 0; }

.fh-btn-primary {
    background: var(--fh-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.3);
}

.fh-btn-primary:hover {
    background: var(--fh-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.4);
    color: white;
}

.fh-btn-accent {
    background: var(--fh-accent);
    color: #1e293b;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.fh-btn-accent:hover {
    background: var(--fh-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #1e293b;
}

.fh-btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.fh-btn-outline-white:hover {
    background: white;
    color: var(--fh-primary);
    border-color: white;
}

.fh-btn-lg {
    font-size: 16px;
    padding: 15px 32px;
}

.fh-btn-sm {
    font-size: 13px;
    padding: 8px 18px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.fh-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--fh-primary-dark);
}

.fh-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    transform: scale(1.05);
    animation: fhHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes fhHeroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.fh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 52, 96, 0.55) 0%,
        rgba(15, 76, 129, 0.40) 50%,
        rgba(26, 110, 181, 0.30) 100%
    );
}

.fh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.fh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.fh-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--fh-accent);
    border-radius: 50%;
    animation: fhPulse 2s ease-in-out infinite;
}

@keyframes fhPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}

.fh-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: white;
}

.fh-hero h1 span { color: var(--fh-accent); }

.fh-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.fh-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.fh-stat {
    text-align: center;
    color: white;
}

.fh-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fh-accent);
    line-height: 1;
}

.fh-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════ */
.fh-section { padding: 96px 0; }
.fh-section-alt { background: var(--fh-bg-alt); }

.fh-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.fh-section-tag {
    display: inline-block;
    background: rgba(15,76,129,0.08);
    color: var(--fh-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.fh-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--fh-text);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.fh-section-header p {
    font-size: 1.1rem;
    color: var(--fh-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FOUR CENTRES
═══════════════════════════════════════════════════════════ */
.fh-centres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.fh-centre-card {
    position: relative;
    background: var(--fh-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    padding: 40px 32px;
    transition: var(--fh-transition);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.fh-centre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fh-primary), var(--fh-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.fh-centre-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fh-shadow-xl);
    border-color: transparent;
    color: inherit;
}

.fh-centre-card:hover::before { transform: scaleX(1); }

.fh-centre-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--fh-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--fh-transition);
}

.fh-centre-card:hover .fh-centre-num { opacity: 0.35; }

.fh-centre-icon {
    width: 52px;
    height: 52px;
    background: rgba(15,76,129,0.08);
    border-radius: var(--fh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fh-primary);
    margin-bottom: 20px;
    transition: var(--fh-transition);
}

.fh-centre-card:hover .fh-centre-icon {
    background: var(--fh-primary);
    color: white;
}

.fh-centre-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fh-text);
    margin-bottom: 12px;
    transition: var(--fh-transition);
    line-height: 1.3;
}

.fh-centre-card:hover h3 { color: var(--fh-primary); }

.fh-centre-card p {
    font-size: 0.9rem;
    color: var(--fh-text-muted);
    line-height: 1.65;
}

.fh-centre-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fh-primary);
    margin-top: 24px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--fh-transition);
}

.fh-centre-card:hover .fh-centre-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES / WHAT WE OFFER
═══════════════════════════════════════════════════════════ */
.fh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.fh-service-card {
    background: var(--fh-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    overflow: hidden;
    transition: var(--fh-transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.fh-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fh-shadow-lg);
    border-color: transparent;
    color: inherit;
}

.fh-service-img {
    height: 210px;
    overflow: hidden;
    background: var(--fh-bg-alt);
    position: relative;
}

.fh-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fh-service-card:hover .fh-service-img img { transform: scale(1.06); }

.fh-service-body { padding: 28px; }

.fh-service-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fh-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.fh-service-body p {
    font-size: 0.9rem;
    color: var(--fh-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.fh-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fh-primary);
    transition: var(--fh-transition);
}

.fh-learn-more:hover { gap: 10px; }

.fh-learn-more svg { transition: var(--fh-transition); }
.fh-service-card:hover .fh-learn-more svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE FYNEST
═══════════════════════════════════════════════════════════ */
.fh-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fh-why-features { display: flex; flex-direction: column; gap: 36px; }

.fh-why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fh-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(15,76,129,0.08);
    border-radius: var(--fh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fh-primary);
    transition: var(--fh-transition);
}

.fh-why-feature:hover .fh-feature-icon {
    background: var(--fh-primary);
    color: white;
    transform: scale(1.05);
}

.fh-feature-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fh-text);
    margin-bottom: 8px;
}

.fh-feature-content p {
    font-size: 0.9rem;
    color: var(--fh-text-muted);
    line-height: 1.65;
}

.fh-why-img {
    position: relative;
    border-radius: var(--fh-radius-lg);
    overflow: hidden;
    height: 580px;
    box-shadow: var(--fh-shadow-xl);
}

.fh-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fh-why-img-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: white;
    border-radius: var(--fh-radius);
    padding: 20px 24px;
    box-shadow: var(--fh-shadow-lg);
    min-width: 180px;
}

.fh-why-img-badge .badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--fh-primary);
    line-height: 1;
}

.fh-why-img-badge .badge-text {
    font-size: 12px;
    color: var(--fh-text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   EXAMS / BADGES TICKER
═══════════════════════════════════════════════════════════ */
.fh-exams-section {
    background: var(--fh-primary);
    padding: 40px 0;
    overflow: hidden;
}

.fh-exams-ticker {
    display: flex;
    gap: 0;
    animation: fhTicker 30s linear infinite;
    width: max-content;
}

@keyframes fhTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.fh-exam-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 10px 24px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 10px;
    flex-shrink: 0;
}

.fh-exam-pill::before {
    content: '✦';
    color: var(--fh-accent);
    font-size: 10px;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.fh-cta-section {
    background: linear-gradient(135deg, var(--fh-primary-dark) 0%, var(--fh-primary) 50%, var(--fh-primary-light) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.fh-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.fh-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(245,158,11,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.fh-cta-content { position: relative; z-index: 1; }

.fh-cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.fh-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.fh-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.fh-footer {
    background: var(--fh-primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 80px 0 0;
}

.fh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 64px;
}

.fh-footer-brand {}

.fh-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.fh-footer-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.fh-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.fh-footer-logo-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.fh-footer-logo-text span {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fh-footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.fh-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--fh-transition);
    font-size: 14px;
}

.fh-social-btn:hover {
    background: var(--fh-accent);
    border-color: transparent;
    color: #1e293b;
    transform: translateY(-2px);
}

.fh-footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fh-footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--fh-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fh-footer-links a::before {
    content: '→';
    font-size: 11px;
    opacity: 0;
    transition: var(--fh-transition);
    transform: translateX(-4px);
}

.fh-footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.fh-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.fh-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    line-height: 1.5;
}

.fh-footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fh-accent);
}

.fh-footer-contact-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--fh-transition);
}

.fh-footer-contact-item a:hover { color: white; }

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

.fh-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fh-footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.fh-footer-legal {
    display: flex;
    gap: 24px;
}

.fh-footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--fh-transition);
}

.fh-footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════════ */
.fh-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--fh-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--fh-shadow-lg);
    transition: var(--fh-transition);
    z-index: 500;
}

.fh-scroll-top.visible { display: flex; }
.fh-scroll-top:hover {
    background: var(--fh-primary-dark);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fh-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fh-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fh-fade-up:nth-child(2) { transition-delay: 0.1s; }
.fh-fade-up:nth-child(3) { transition-delay: 0.2s; }
.fh-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .fh-why-grid { grid-template-columns: 1fr; gap: 48px; }
    .fh-why-img { height: 400px; }
    .fh-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .fh-nav-links,
    .fh-nav-cta   { display: none; }
    .fh-hamburger  { display: flex; }
    .fh-header     { position: relative; }
    .fh-section    { padding: 64px 0; }
    .fh-hero       { min-height: 75vh; }
    .fh-hero-stats { gap: 28px; }
    .fh-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .fh-services-grid { grid-template-columns: 1fr; }
    .fh-centres-grid  { grid-template-columns: 1fr 1fr; }
    .fh-cta-section   { padding: 72px 0; }
}

@media (max-width: 480px) {
    .fh-container     { padding: 0 16px; }
    .fh-centres-grid  { grid-template-columns: 1fr; }
    .fh-hero-btns     { flex-direction: column; align-items: center; }
    .fh-cta-btns      { flex-direction: column; align-items: center; }
    .fh-footer-bottom-inner { flex-direction: column; text-align: center; }
    .fh-footer-legal  { flex-wrap: wrap; justify-content: center; gap: 12px; }
}
