:root {
    --uk-blue: #012169;
    --uk-blue-dark: #001052;
    --uk-blue-light: #003580;
    --uk-red: #C8102E;
    --uk-red-dark: #a00d24;
    --uk-red-light: #e8334a;
    --uk-white: #FFFFFF;
    --uk-off-white: #f4f6f9;
    --uk-gray-100: #e9ecef;
    --uk-gray-200: #dee2e6;
    --uk-gray-300: #ced4da;
    --uk-gray-500: #6c757d;
    --uk-gray-700: #495057;
    --uk-gray-900: #212529;
    --gradient-blue: linear-gradient(135deg, var(--uk-blue) 0%, var(--uk-blue-light) 100%);
    --gradient-red: linear-gradient(135deg, var(--uk-red) 0%, var(--uk-red-light) 100%);
    --gradient-hero: linear-gradient(160deg, rgba(1,33,105,0.95) 0%, rgba(0,53,128,0.82) 40%, rgba(200,16,46,0.55) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--uk-gray-900);
    overflow-x: hidden;
    background: var(--uk-white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--uk-gray-100); }
::-webkit-scrollbar-thumb { background: var(--uk-blue); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--uk-red); }

/* ========== TOPBAR ========== */
.topbar {
    background: var(--uk-blue-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1001;
}
.topbar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.topbar a:hover { color: var(--uk-red-light); }
.topbar .bi { color: var(--uk-red-light); font-size: 14px; }
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-left: 6px;
    transition: all 0.3s;
}
.topbar-social a:hover {
    background: var(--uk-red);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.main-navbar {
    background: var(--uk-white);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--uk-blue) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    /* gap: 8px; */
    padding: 16px 0;
}
.navbar-brand .brand-icon {
    width: 42px; height: 42px;
    background: var(--gradient-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.navbar-brand span { color: var(--uk-red); }
.main-navbar .nav-link {
    color: var(--uk-gray-700) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 28px 18px !important;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 0.2px;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18px; right: 18px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--uk-blue) !important; }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link .bi-chevron-down {
    font-size: 10px; margin-left: 4px; transition: transform 0.3s;
}
.main-navbar .dropdown:hover .bi-chevron-down { transform: rotate(180deg); }
.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 0 !important;
    min-width: 220px;
    animation: dropFade 0.3s ease;
    border-top: 3px solid var(--uk-red);
}
@keyframes dropFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.main-navbar .dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--uk-gray-700);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-navbar .dropdown-item:hover {
    background: var(--uk-off-white);
    color: var(--uk-blue);
    padding-left: 20px;
}
.main-navbar .dropdown-item .bi { color: var(--uk-red); font-size: 16px; }
.dropdown-item.active, .dropdown-item:active {
    /* color: var(--bs-dropdown-link-active-color); */
    text-decoration: none;
    background-color: #d2e4ff;
}
.nav-cta {
    background: var(--gradient-red) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    margin-left: 10px;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(200,16,46,0.3);
    text-decoration: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,16,46,0.4) !important;
}

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: url('../img/uk/12.jpg') center/cover no-repeat;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--uk-white), transparent);
    z-index: 2;
}
.page-hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 80px 80px;
}
.page-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.18);
    padding: 7px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.page-hero-badge .bi { color: var(--uk-red-light); }
.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.page-hero h1 span {
    background: linear-gradient(135deg, var(--uk-red-light), #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    line-height: 1.7;
    margin: 0;
}
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.breadcrumb-custom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}
.breadcrumb-custom a:hover { color: var(--uk-red-light); }
.breadcrumb-custom .bi { font-size: 10px; color: rgba(255,255,255,0.4); }
.breadcrumb-custom span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ========== SECTION STYLES ========== */
.section-padding { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200,16,46,0.08);
    color: var(--uk-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--uk-blue);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title span { color: var(--uk-red); }
.section-desc {
    font-size: 1.05rem;
    color: var(--uk-gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== OUR STORY ========== */
.story-section { background: var(--uk-white); position: relative; overflow: hidden; }
.story-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(1,33,105,0.03);
}
.story-img-wrapper { position: relative; }
.story-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-img-main img { width: 100%; height: 480px; object-fit: cover; }
.story-float-badge {
    position: absolute;
    top: -20px; right: -20px;
    background: var(--uk-red);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.story-float-badge h3 { font-weight: 900; font-size: 2.2rem; line-height: 1; margin: 0; }
.story-float-badge p { font-size: 0.78rem; opacity: 0.9; margin: 6px 0 0; font-weight: 500; }
.story-float-card {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--uk-white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.story-float-icon {
    width: 52px; height: 52px;
    background: var(--gradient-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.story-float-card h5 { font-weight: 800; font-size: 1.4rem; color: var(--uk-blue); margin: 0; line-height: 1; }
.story-float-card p { font-size: 0.82rem; color: var(--uk-gray-500); margin: 2px 0 0; }
.story-content h2 {
    font-size: 2.3rem; font-weight: 800; color: var(--uk-blue); line-height: 1.2; margin-bottom: 18px;
}
.story-content h2 span { color: var(--uk-red); }
.story-content p { color: var(--uk-gray-500); line-height: 1.8; font-size: 0.98rem; margin-bottom: 16px; }
.story-list { list-style: none; padding: 0; margin: 20px 0; }
.story-list li {
    display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
    font-size: 0.95rem; color: var(--uk-gray-700); font-weight: 500;
}
.story-list li .bi {
    width: 28px; height: 28px;
    background: rgba(200,16,46,0.1);
    color: var(--uk-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0; margin-top: 2px;
}

/* ========== MISSION VISION ========== */
.mv-section { background: var(--uk-off-white); position: relative; overflow: hidden; }
.mv-section::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(1,33,105,0.04);
}
.mv-card {
    background: var(--uk-white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--uk-gray-200);
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
}
.mv-card.mission::before { background: var(--gradient-blue); }
.mv-card.vision::before { background: var(--gradient-red); }
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mv-icon {
    width: 72px; height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}
.mv-icon.blue { background: rgba(1,33,105,0.08); color: var(--uk-blue); }
.mv-icon.red { background: rgba(200,16,46,0.08); color: var(--uk-red); }
.mv-card:hover .mv-icon.blue { background: var(--uk-blue); color: #fff; }
.mv-card:hover .mv-icon.red { background: var(--uk-red); color: #fff; }
.mv-card h3 { font-weight: 800; color: var(--uk-blue); margin-bottom: 16px; font-size: 1.4rem; }
.mv-card p { color: var(--uk-gray-500); line-height: 1.75; font-size: 0.95rem; margin: 0; }

/* ========== VALUES ========== */
.values-section { background: var(--uk-white); }
.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--uk-white);
    border: 1px solid var(--uk-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
    width: 68px; height: 68px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all 0.4s;
}
.value-icon.blue { background: rgba(1,33,105,0.08); color: var(--uk-blue); }
.value-icon.red { background: rgba(200,16,46,0.08); color: var(--uk-red); }
.value-icon.mixed { background: linear-gradient(135deg, rgba(1,33,105,0.08), rgba(200,16,46,0.08)); color: var(--uk-blue); }
.value-card:hover .value-icon.blue { background: var(--uk-blue); color: #fff; }
.value-card:hover .value-icon.red { background: var(--uk-red); color: #fff; }
.value-card:hover .value-icon.mixed { background: var(--gradient-blue); color: #fff; }
.value-card h5 { font-weight: 700; color: var(--uk-blue); margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; color: var(--uk-gray-500); line-height: 1.65; margin: 0; }

/* ========== TIMELINE ========== */
.timeline-section { background: var(--uk-off-white); position: relative; }
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--uk-blue), var(--uk-red));
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 24px;
    background: var(--uk-white);
    border: 4px solid var(--uk-red);
    border-radius: 50%;
    z-index: 2;
    top: 20px;
}
.timeline-content {
    background: var(--uk-white);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--uk-gray-200);
    width: 45%;
    transition: all 0.3s;
}
.timeline-content:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; margin-right: 55%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 55%; }
.timeline-year {
    display: inline-block;
    background: var(--gradient-red);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.timeline-content h5 { font-weight: 700; color: var(--uk-blue); margin-bottom: 8px; font-size: 1.1rem; }
.timeline-content p { font-size: 0.9rem; color: var(--uk-gray-500); line-height: 1.7; margin: 0; }

/* ========== TEAM ========== */
.team-section { background: var(--uk-white); }
.team-card {
    background: var(--uk-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--uk-gray-200);
    transition: all 0.4s;
    height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-8px); }
.team-img { position: relative; overflow: hidden; height: 300px; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(1,33,105,0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 20px; gap: 10px;
    opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-img-overlay a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    transition: all 0.3s; transform: translateY(10px);
}
.team-card:hover .team-img-overlay a { transform: translateY(0); }
.team-img-overlay a:hover { background: var(--uk-red); }
.team-body { padding: 24px; text-align: center; }
.team-body h5 { font-weight: 700; color: var(--uk-blue); margin-bottom: 4px; font-size: 1.1rem; }
.team-body .team-role { font-size: 0.88rem; color: var(--uk-red); font-weight: 600; margin-bottom: 10px; }
.team-body p { font-size: 0.85rem; color: var(--uk-gray-500); line-height: 1.6; margin: 0; }

/* ========== CERTIFICATIONS ========== */
.cert-section { background: var(--gradient-blue); position: relative; overflow: hidden; }
.cert-section::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(200,16,46,0.15);
}
.cert-section::after {
    content: '';
    position: absolute; bottom: -30%; left: -5%;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cert-content { position: relative; z-index: 2; }
.cert-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
}
.cert-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.cert-icon {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--uk-red-light);
}
.cert-card h5 { font-weight: 700; color: #fff; margin-bottom: 6px; font-size: 1.05rem; }
.cert-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* ========== STATS ========== */
.stats-section { background: var(--uk-white); }
.stat-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-md);
    background: var(--uk-off-white);
    border: 1px solid var(--uk-gray-200);
    transition: all 0.4s;
    height: 100%;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--uk-blue);
}
.stat-icon {
    width: 64px; height: 64px;
    background: var(--gradient-blue);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #fff;
}
.stat-card h3 { font-weight: 900; font-size: 2.4rem; color: var(--uk-blue); line-height: 1; margin-bottom: 6px; }
.stat-card h3 span { color: var(--uk-red); }
.stat-card p { font-size: 0.9rem; color: var(--uk-gray-500); font-weight: 500; margin: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--uk-off-white); }
.testimonial-card {
    background: var(--uk-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--uk-gray-200);
    height: 100%;
    position: relative;
    transition: all 0.4s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.testimonial-quote {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 60px;
    color: var(--uk-gray-200);
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars .bi { color: #fbbf24; font-size: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--uk-gray-700); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--uk-gray-100); }
.testimonial-author h6 { font-weight: 700; color: var(--uk-blue); margin: 0; font-size: 0.95rem; }
.testimonial-author p { font-size: 0.82rem; color: var(--uk-gray-500); margin: 2px 0 0; }

/* ========== CTA ========== */
.cta-section {
    background: var(--uk-white);
    position: relative;
    overflow: hidden;
}
.cta-card {
    background: var(--gradient-blue);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(200,16,46,0.2);
}
.cta-card::after {
    content: '';
    position: absolute; bottom: -40px; left: 30%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-content h2 span { color: var(--uk-red-light); }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }
.btn-cta {
    background: var(--uk-red); color: #fff;
    padding: 16px 36px; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200,16,46,0.4);
    border: none;
}
.btn-cta:hover {
    background: var(--uk-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,16,46,0.5);
    color: #fff;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--uk-blue-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}
.footer-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--uk-blue) 0%, var(--uk-red) 50%, var(--uk-blue) 100%);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .brand-icon {
    width: 46px; height: 46px;
    background: var(--uk-red);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
}
.footer-brand span { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-brand .red { color: var(--uk-red-light); }
.footer-about p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social a:hover { background: var(--uk-red); color: #fff; transform: translateY(-3px); }
.footer-title {
    color: #fff; font-weight: 700; font-size: 1.05rem;
    margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 35px; height: 3px;
    background: var(--uk-red); border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none; font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s;
}
.footer-links a .bi {
    font-size: 10px; color: var(--uk-red);
    opacity: 0; transform: translateX(-5px); transition: all 0.3s;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover .bi { opacity: 1; transform: translateX(0); }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; font-size: 0.9rem;
}
.footer-contact li .bi { color: var(--uk-red-light); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: #fff; }
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.footer-payments span {
    background: rgba(255,255,255,0.08);
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; gap: 5px;
}
.footer-payments span .bi { font-size: 16px; }
.footer-bottom {
    margin-top: 50px; padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--uk-red-light); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }

/* ========== COPYRIGHT ========== */
.copyright-section { background: #000a1f; padding: 14px 0; text-align: center; }
.copyright-section p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.copyright-section a { color: var(--uk-red-light); text-decoration: none; }
.copyright-section a:hover { color: #fff; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--gradient-red); color: #fff;
    border: none; border-radius: 50%;
    font-size: 20px; cursor: pointer;
    z-index: 999; display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(200,16,46,0.4);
    transition: all 0.3s;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200,16,46,0.5); }
.back-to-top.show { display: flex; }

/* ========== TOAST ========== */
.custom-toast {
    position: fixed; top: 100px; right: 30px;
    background: var(--uk-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 18px 24px;
    z-index: 9999; display: none;
    align-items: center; gap: 12px;
    border-left: 4px solid var(--uk-red);
    max-width: 380px;
    animation: slideInRight 0.4s ease;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.custom-toast .bi { font-size: 22px; color: var(--uk-red); }
.custom-toast .toast-msg { font-size: 0.9rem; font-weight: 500; color: var(--uk-gray-700); }
.custom-toast .toast-close { background: none; border: none; font-size: 18px; color: var(--uk-gray-500); cursor: pointer; margin-left: auto; padding: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .page-hero { min-height: 300px; }
    .page-hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        width: 100%;
    }
    .footer-bottom-links { justify-content: flex-start; margin-top: 10px; }
}
@media (max-width: 767px) {
    .page-hero { min-height: 260px; }
    .page-hero-content { padding: 100px 0 60px; }
    .page-hero h1 { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.75rem; }
    .story-content h2 { font-size: 1.8rem; }
    .topbar .d-flex { flex-direction: column; gap: 6px; }
    .footer-bottom .d-flex { flex-direction: column; gap: 10px; text-align: center; }
    .cta-card { padding: 40px 30px; }
    .cta-content h2 { font-size: 1.7rem; }
}
@media (max-width: 575px) {
    .timeline-dot { left: 12px; width: 18px; height: 18px; }
    .timeline::before { left: 12px; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { margin-left: 40px; }
    .timeline-content { padding: 20px; }
}

/* Loader */
.page-loader {
    position: fixed; inset: 0;
    background: var(--uk-blue-dark);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s;
}
.page-loader.hide { opacity: 0; pointer-events: none; }
.loader-plane { font-size: 48px; color: #fff; animation: flyPlane 1.5s ease-in-out infinite; }
@keyframes flyPlane {
    0%, 100% { transform: translateX(-20px) translateY(10px) rotate(-5deg); }
    50% { transform: translateX(20px) translateY(-10px) rotate(5deg); }
}