/* ================================================================
   FOX UNIVERSAL FZCO — Global Redesign
   Modern Header · Page Hero · Footer · Scroll Animations
   ================================================================ */

/* ── Modern Header (унифицированный для всех страниц) ─────────── */
.header-v2 {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.header-v2.scrolled {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255,255,255,0.08);
}
.header-v2.light-header {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    border-bottom-color: #e8edf2;
}
.header-v2.light-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom-color: #e1e8ed;
}

.hv2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

.hv2-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.hv2-logo img { height: 44px; width: auto; }
.hv2-logo-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
/* Light header: dark logo text */
.light-header .hv2-logo-text { color: #1a2332; }
.light-header.scrolled .hv2-logo-text { color: #1a2332; }

.hv2-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.hv2-link {
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
    position: relative;
}
.hv2-link:hover, .hv2-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
}
/* Light header: dark links by default */
.light-header .hv2-link { color: #5a6c7d; }
.light-header .hv2-link:hover,
.light-header .hv2-link.active { color: #1a2332; background: #f0f4f8; }
.light-header.scrolled .hv2-link { color: #5a6c7d; }
.light-header.scrolled .hv2-link:hover,
.light-header.scrolled .hv2-link.active { color: #1a2332; background: #f0f4f8; }

/* Dropdown */
.hv2-dropdown { position: relative; }
.hv2-drop-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s;
}
.hv2-drop-btn:hover { color: white; background: rgba(255,255,255,0.1); }
/* Light header: dark dropdown button */
.light-header .hv2-drop-btn { color: #5a6c7d; }
.light-header .hv2-drop-btn:hover { color: #1a2332; background: #f0f4f8; }
.light-header.scrolled .hv2-drop-btn { color: #5a6c7d; }
.light-header.scrolled .hv2-drop-btn:hover { color: #1a2332; background: #f0f4f8; }
.hv2-drop-btn i { font-size: 0.7rem; transition: transform 0.3s; }
.hv2-dropdown:hover .hv2-drop-btn i { transform: rotate(180deg); }

.hv2-drop-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 320px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    /* Delay hiding so cursor has time to move into the menu */
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    transition-delay: 0s;
    visibility: hidden;
}
/* Invisible bridge fills the gap between button and menu */
.hv2-drop-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}
.hv2-dropdown:hover .hv2-drop-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transition-delay: 0s;
}
/* Keep menu open while hovering it directly */
.hv2-drop-menu:hover {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.hv2-drop-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}
.hv2-drop-item:hover { background: #f8f9fa; }
.hv2-drop-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #C94048, #B73843);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.hv2-drop-title { font-size: 0.875rem; font-weight: 600; color: #1a2332; margin-bottom: 0.15rem; }
.hv2-drop-desc { font-size: 0.775rem; color: #7f8c9d; }

/* Right actions */
.hv2-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.hv2-lang {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}
.light-header .hv2-lang,
.light-header.scrolled .hv2-lang {
    background: #f0f4f8;
    border-color: #e1e8ed;
}
.hv2-lang-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.hv2-lang-btn.active { background: #C94048; color: white; border-radius: 6px; }
.light-header .hv2-lang-btn,
.light-header.scrolled .hv2-lang-btn { color: #7f8c9d; }
.light-header .hv2-lang-btn.active,
.light-header.scrolled .hv2-lang-btn.active { background: #C94048; color: white; }

.hv2-cta {
    padding: 0.55rem 1.25rem;
    background: #C94048;
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(201,64,72,0.35);
}
.hv2-cta:hover { background: #B73843; transform: translateY(-1px); color: white; box-shadow: 0 4px 18px rgba(201,64,72,0.45); }

/* Mobile toggle */
.hv2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hv2-burger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}
.light-header .hv2-burger span,
.light-header.scrolled .hv2-burger span { background: #1a2332; }

/* Mobile nav drawer */
.hv2-mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}
.hv2-mobile.open { pointer-events: all; }
.hv2-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,14,26,0.6);
    opacity: 0;
    transition: opacity 0.3s;
}
.hv2-mobile.open .hv2-mobile-backdrop { opacity: 1; }
.hv2-mobile-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(340px, 90vw);
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.hv2-mobile.open .hv2-mobile-panel { transform: translateX(0); }

.hv2-mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f4f8;
}
.hv2-mob-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: #f0f4f8; border: none; border-radius: 8px; cursor: pointer;
    font-size: 1rem; color: #5a6c7d; transition: background 0.2s;
}
.hv2-mob-close:hover { background: #e1e8ed; }

.hv2-mob-nav { padding: 1rem 1.5rem; flex: 1; }
.hv2-mob-link {
    display: block;
    padding: 0.875rem 1rem;
    color: #1a2332;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s;
    margin-bottom: 0.25rem;
}
.hv2-mob-link:hover, .hv2-mob-link.active { background: #f8f9fa; color: #C94048; }

.hv2-mob-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    color: #1a2332;
    font-weight: 600;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s;
    margin-bottom: 0.25rem;
}
.hv2-mob-accordion-btn:hover { background: #f8f9fa; }
.hv2-mob-accordion-btn i { font-size: 0.75rem; transition: transform 0.3s; }
.hv2-mob-accordion-btn.open i { transform: rotate(180deg); }

.hv2-mob-sub {
    display: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
}
.hv2-mob-sub.open { display: block; }
.hv2-mob-sub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    margin-bottom: 0.25rem;
}
.hv2-mob-sub-link:hover { background: #f8f9fa; color: #C94048; }
.hv2-mob-sub-link i { color: #C94048; width: 18px; text-align: center; }

.hv2-mob-footer {
    padding: 1.5rem;
    border-top: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.hv2-mob-lang {
    display: flex;
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}
.hv2-mob-lang-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #7f8c9d;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.hv2-mob-lang-btn.active { background: #C94048; color: white; border-radius: 6px; }
.hv2-mob-cta {
    display: block;
    text-align: center;
    padding: 0.875rem;
    background: #C94048;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s;
}
.hv2-mob-cta:hover { background: #B73843; color: white; }

/* ── Page Hero (fullscreen, photo bg) ──────────────────────────── */
.page-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 72px;
}

.ph-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ph-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: ph-zoom 18s ease-in-out infinite alternate;
}
@keyframes ph-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.07); }
}
.ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(10,14,26,0.90) 0%,
        rgba(26,35,50,0.80) 50%,
        rgba(201,64,72,0.30) 100%
    );
}

/* Animated lines */
.ph-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ph-lines::before, .ph-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,64,72,0.3), transparent);
    animation: ph-line-move 6s ease-in-out infinite alternate;
}
.ph-lines::before { left: 20%; animation-delay: 0s; }
.ph-lines::after  { left: 75%; animation-delay: 2s; }
@keyframes ph-line-move {
    from { opacity: 0.4; transform: scaleY(0.8); }
    to   { opacity: 0.8; transform: scaleY(1); }
}

/* Particles */
.ph-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ph-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,64,72,0.2);
    animation: ph-float linear infinite;
}
.ph-particles span:nth-child(1) { width:5px;height:5px;left:8%;top:25%;animation-duration:14s;animation-delay:0s }
.ph-particles span:nth-child(2) { width:9px;height:9px;left:22%;top:65%;animation-duration:19s;animation-delay:2s;background:rgba(59,107,168,0.2) }
.ph-particles span:nth-child(3) { width:4px;height:4px;left:45%;top:18%;animation-duration:11s;animation-delay:1s }
.ph-particles span:nth-child(4) { width:12px;height:12px;left:65%;top:72%;animation-duration:23s;animation-delay:3s;background:rgba(59,107,168,0.15) }
.ph-particles span:nth-child(5) { width:7px;height:7px;left:82%;top:35%;animation-duration:16s;animation-delay:0.5s }
.ph-particles span:nth-child(6) { width:5px;height:5px;left:90%;top:80%;animation-duration:13s;animation-delay:4s }
@keyframes ph-float {
    0%   { transform:translateY(0) rotate(0deg); opacity:.5 }
    50%  { transform:translateY(-35px) rotate(180deg); opacity:1 }
    100% { transform:translateY(-70px) rotate(360deg); opacity:0 }
}

/* Content */
.ph-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    max-width: 800px;
}
.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(201,64,72,0.15);
    border: 1px solid rgba(201,64,72,0.5);
    border-radius: 50px;
    color: #f08080;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.ph-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: #C94048;
    border-radius: 50%;
    animation: ph-pulse 1.6s ease-in-out infinite;
}
@keyframes ph-pulse {
    0%,100% { transform:scale(1); opacity:1 }
    50% { transform:scale(1.5); opacity:0.5 }
}
.ph-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ph-title span { color: #C94048; }
.ph-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 640px;
}
.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2rem;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.ph-breadcrumb a:hover { color: white; }
.ph-breadcrumb i { font-size: 0.6rem; }
.ph-breadcrumb span { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Bottom info bar */
.ph-info-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(10,14,26,0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ph-info-inner {
    display: flex;
    align-items: stretch;
    divide-x: 1px solid rgba(255,255,255,0.1);
}
.ph-info-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.1rem 2rem;
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.ph-info-item:last-child { border-right: none; }
.ph-info-item:hover { background: rgba(201,64,72,0.08); }
.ph-info-icon {
    width: 36px; height: 36px;
    background: rgba(201,64,72,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #f08080;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.ph-info-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}
.ph-info-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* Scroll hint */
.ph-scroll-hint {
    position: absolute;
    bottom: 80px;
    right: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: ph-fade-pulse 3s ease-in-out infinite;
}
@keyframes ph-fade-pulse {
    0%,100% { opacity:0.4 }
    50% { opacity:0.8 }
}
.ph-scroll-hint::after {
    content:'';
    width:1px; height:48px;
    background: linear-gradient(to bottom, rgba(201,64,72,0.7), transparent);
    animation: ph-line-grow 2s ease-in-out infinite;
}
@keyframes ph-line-grow {
    0%,100% { transform:scaleY(0.5); opacity:0.5 }
    50% { transform:scaleY(1); opacity:1 }
}

/* ── Modern Footer ─────────────────────────────────────────────── */
.footer-v2 {
    background: linear-gradient(135deg, #0a0e1a 0%, #111827 60%, #1a0a0c 100%);
    padding-top: 5rem;
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}
.footer-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,64,72,0.5), rgba(59,107,168,0.5), transparent);
}

.fv2-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fv2-brand .fv2-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.fv2-brand .fv2-logo img { height: 48px; width: auto; }
.fv2-brand .fv2-logo-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}
.fv2-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.75rem;
    max-width: 280px;
}
.fv2-contacts-mini { display: flex; flex-direction: column; gap: 0.6rem; }
.fv2-contact-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.fv2-contact-row i { color: #C94048; width: 14px; text-align: center; }
.fv2-contact-row a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.fv2-contact-row a:hover { color: white; }

.fv2-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.fv2-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.fv2-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.fv2-col ul li a::before {
    content: '';
    width: 4px; height: 4px;
    background: #C94048;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}
.fv2-col ul li a:hover { color: white; }
.fv2-col ul li a:hover::before { opacity: 1; }

.fv2-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.fv2-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.fv2-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── Scroll Reveal Animations ─────────────────────────────────── */
.sr-hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr-hidden.sr-left {
    transform: translateX(-28px);
}
.sr-hidden.sr-right {
    transform: translateX(28px);
}
.sr-hidden.sr-scale {
    transform: scale(0.94);
}
.sr-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Stagger delays */
.sr-delay-1 { transition-delay: 0.1s !important; }
.sr-delay-2 { transition-delay: 0.2s !important; }
.sr-delay-3 { transition-delay: 0.3s !important; }
.sr-delay-4 { transition-delay: 0.4s !important; }
.sr-delay-5 { transition-delay: 0.5s !important; }
.sr-delay-6 { transition-delay: 0.6s !important; }

/* ── Card Hover Lift (global) ─────────────────────────────────── */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ── Section title underline accent ──────────────────────────── */
.section-subtitle {
    position: relative;
    display: inline-block;
}

/* ── Modern Service Cards ─────────────────────────────────────── */
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}
.svc-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f0f4f8;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C94048, #3B6BA8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(201,64,72,0.1), rgba(59,107,168,0.08));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #C94048;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.svc-card:hover .svc-card-icon {
    background: linear-gradient(135deg, #C94048, #B73843);
    color: white;
    transform: scale(1.1);
}
.svc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.svc-card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C94048;
    text-decoration: none;
    transition: gap 0.2s;
}
.svc-card-link:hover { gap: 0.7rem; color: #B73843; }
.svc-card-link i { font-size: 0.75rem; }

/* ── Feature Grid (image + content) ──────────────────────────── */
.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feat-grid.reverse { direction: rtl; }
.feat-grid.reverse > * { direction: ltr; }
.feat-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.feat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.feat-img:hover img { transform: scale(1.05); }
.feat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,64,72,0.08), transparent);
    pointer-events: none;
}
.feat-content .section-subtitle { margin-bottom: 0.75rem; }
.feat-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.feat-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.feat-list {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: #1a2332;
    line-height: 1.5;
}
.feat-list li i {
    color: #C94048;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #0d1520 50%, #1a0608 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(201,64,72,0.08) 0%, transparent 60%);
    animation: cta-pulse 8s ease-in-out infinite;
}
@keyframes cta-pulse {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}
.cta-section .section-subtitle { color: rgba(201,64,72,0.8); }
.cta-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin: 0.75rem 0 1.25rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-btn-primary {
    padding: 0.875rem 2rem;
    background: #C94048;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,64,72,0.4);
}
.cta-btn-primary:hover { background: #B73843; transform: translateY(-2px); color: white; box-shadow: 0 8px 30px rgba(201,64,72,0.5); }
.cta-btn-outline {
    padding: 0.875rem 2rem;
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #1a2332, #2c3e55);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.stats-strip-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}
.stats-strip-item:last-child { border-right: none; }
.stats-strip-item:hover { background: rgba(201,64,72,0.08); }
.stats-strip-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stats-strip-num span { color: #C94048; }
.stats-strip-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ── Process Steps ───────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: steps;
}
.process-item {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid #f0f4f8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s;
}
.process-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.process-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(201,64,72,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.process-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f4f8;
}
.process-icon {
    font-size: 1.75rem;
    color: #C94048;
    margin-bottom: 1rem;
}
.process-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.625rem;
}
.process-item p {
    font-size: 0.875rem;
    color: #5a6c7d;
    line-height: 1.65;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fv2-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .feat-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .feat-img { height: 320px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stats-strip-item:nth-child(2) { border-right: none; }
    .stats-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
    .hv2-nav, .hv2-cta { display: none; }
    .hv2-burger { display: flex; }
    .hv2-mobile { display: block; }
    .page-hero { min-height: auto; }
    .ph-content { padding: 3rem 0 5rem; }
    .ph-info-bar { position: static; }
    .ph-info-inner { flex-direction: column; }
    .ph-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem; }
    .ph-scroll-hint { display: none; }
    .fv2-grid { grid-template-columns: 1fr; gap: 2rem; }
    .fv2-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .stats-strip { grid-template-columns: 1fr 1fr; border-radius: 12px; }
    .svc-cards-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
    .ph-title { font-size: 2rem; }
    .ph-desc { font-size: 0.95rem; }
    .hv2-inner { height: 64px; }
    .page-hero { margin-top: 64px; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .stats-strip-num { font-size: 1.75rem; }
    .feat-content h2 { font-size: 1.75rem; }
}

/* ================================================================
   UTILITY CLASSES — replaces all inline styles across HTML files
   ================================================================ */

/* ── Mobile logo image size ──────────────────────────────────── */
.hv2-mob-logo-img { height: 36px; width: auto; }

/* ── Feature / content images ────────────────────────────────── */
.feature-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ── Card icons in service page headings ─────────────────────── */
.card-heading-icon {
    color: #C94048;
    margin-right: 0.5rem;
}

/* ── Content narrow wrapper (max-width: 900px centered) ─────── */
.content-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Process step card (used in banking, residency, etc.) ────── */
.process-step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm, 0 1px 8px rgba(0,0,0,0.07));
    border-left: 4px solid #C94048;
}
.process-step-card h3 {
    color: var(--primary-dark, #1a2332);
    margin-bottom: 1rem;
}

/* ── Section with dark-blue gradient background ──────────────── */
.section-dark-gradient {
    background: linear-gradient(135deg, #1a2332 0%, #2F5F9E 100%);
    color: white;
    padding: 5rem 0;
}
.section-dark-gradient h2 { color: white; }
.section-dark-gradient p  { opacity: 0.9; }

/* ── Section with blue gradient background (about mission) ───── */
.section-blue-gradient {
    background: linear-gradient(135deg, #3B6BA8 0%, #2F5F9E 100%);
    color: white;
    padding: 5rem 0;
}
.section-blue-gradient h2,
.section-blue-gradient p { color: white; }

/* ── Mission block (old classes — kept for backward compat) ──── */
.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-quote-icon { display: none; }
.mission-title { font-size: 2rem; font-weight: 300; line-height: 1.6; margin-bottom: 2rem; color: white; }
.mission-text { font-size: 1.125rem; opacity: 0.9; color: white; }

/* ── Why-choose block inner wrapper (services.html) ──────────── */
.why-choose-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}
.why-choose-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.why-choose-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.why-choose-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s;
}
.why-choose-card:hover { background: rgba(255,255,255,0.15); }
.why-choose-card-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.why-choose-card h3 { color: white; margin-bottom: 0.75rem; }
.why-choose-card p  { opacity: 0.85; color: white; }

/* ── Services section text-center CTA ────────────────────────── */
.section-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ── Stats grid row spacing ───────────────────────────────────── */
.stats-grid-spaced { margin-bottom: 4rem; }

/* ── Contact info links ───────────────────────────────────────── */
.contact-link-primary {
    color: #C94048;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.contact-link-primary:hover { opacity: 0.8; color: #C94048; }

/* ── Contact address text ─────────────────────────────────────── */
.contact-address {
    color: var(--text-primary, #1a2332);
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ── Contact form wrapper ─────────────────────────────────────── */
.contact-form-section-header { margin-bottom: 3rem; }
.contact-form-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.form-select-cursor { cursor: pointer; }
.form-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

/* ── News loading / error states ─────────────────────────────── */
.news-state {
    text-align: center;
    padding: 3rem;
}
.news-state-icon-red   { font-size: 3rem; color: #C94048; }
.news-state-icon-muted { font-size: 3rem; color: var(--text-secondary, #5a6c7d); }
.news-state-text {
    margin-top: 1rem;
    color: var(--text-secondary, #5a6c7d);
}

/* ── News detail meta line ────────────────────────────────────── */
.news-meta-line {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* ── News detail content wrapper ─────────────────────────────── */
.news-content-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.news-content-body {
    line-height: 1.8;
    font-size: 1.125rem;
}
.news-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color, #e1e8ed);
}

/* ── News detail page-hero height ────────────────────────────── */
.page-hero--news-detail { min-height: 55vh; }

/* ── Service icon colors (index.html service cards) ──────────── */
.svc-icon-red  { background: linear-gradient(135deg, #C94048 0%, #B73843 100%); }
.svc-icon-blue { background: linear-gradient(135deg, #3B6BA8 0%, #2F5F9E 100%); }

/* ── About: features-grid align top ──────────────────────────── */
.features-grid-top { align-items: start; }

/* ── About: registration description spacing ─────────────────── */
.about-reg-description { margin-top: 2rem; }

/* ── Scroll-to-top button ─────────────────────────────────────── */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #C94048;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(201,64,72,0.4);
    transition: all 0.3s;
    z-index: 999;
}
.scroll-to-top:hover {
    background: #B73843;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201,64,72,0.5);
}
/* show state set via JS: element.style.display = 'flex' */

@media (max-width: 768px) {
    .mission-title  { font-size: 1.75rem; }
    .contact-form-card { padding: 1.5rem; }
    .why-choose-grid { grid-template-columns: 1fr; }
}
