: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/7.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;
}

/* ========== CONTACT INFO ========== */
.contact-info-section { background: var(--uk-white); position: relative; overflow: hidden; }
.contact-info-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(1,33,105,0.03);
}
.contact-info-card {
    background: var(--uk-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--uk-gray-200);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.contact-info-card:hover::before { transform: scaleX(1); }
.contact-info-icon {
    width: 68px; height: 68px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: all 0.4s;
}
.contact-info-icon.blue { background: rgba(1,33,105,0.08); color: var(--uk-blue); }
.contact-info-icon.red { background: rgba(200,16,46,0.08); color: var(--uk-red); }
.contact-info-icon.mixed { background: linear-gradient(135deg, rgba(1,33,105,0.08), rgba(200,16,46,0.08)); color: var(--uk-blue); }
.contact-info-card:hover .contact-info-icon.blue { background: var(--uk-blue); color: #fff; }
.contact-info-card:hover .contact-info-icon.red { background: var(--uk-red); color: #fff; }
.contact-info-card:hover .contact-info-icon.mixed { background: var(--gradient-blue); color: #fff; }
.contact-info-card h5 { font-weight: 700; color: var(--uk-blue); margin-bottom: 10px; font-size: 1.1rem; }
.contact-info-card p { font-size: 0.9rem; color: var(--uk-gray-500); line-height: 1.65; margin: 0; }
.contact-info-card a {
    color: var(--uk-gray-500);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}
.contact-info-card a:hover { color: var(--uk-red); }
.contact-hours-list { list-style: none; padding: 0; margin: 0; }
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--uk-gray-100);
}
.contact-hours-list li:last-child { border-bottom: none; }
.contact-hours-list li span:first-child { color: var(--uk-gray-700); font-weight: 500; }
.contact-hours-list li span:last-child { color: var(--uk-red); font-weight: 600; }

/* ========== CONTACT FORM ========== */
.contact-form-section { background: var(--uk-off-white); position: relative; overflow: hidden; }
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(1,33,105,0.04);
}
.contact-form-card {
    background: var(--uk-white);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--uk-gray-200);
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--gradient-blue);
}
.contact-form-card h3 { font-weight: 800; color: var(--uk-blue); margin-bottom: 8px; font-size: 1.5rem; }
.contact-form-card > p { font-size: 0.95rem; color: var(--uk-gray-500); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--uk-gray-700);
    margin-bottom: 8px;
}
.form-group label .required { color: var(--uk-red); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--uk-gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--uk-gray-900);
    transition: all 0.3s;
    background: var(--uk-white);
}
.form-control:focus {
    outline: none;
    border-color: var(--uk-blue);
    box-shadow: 0 0 0 4px rgba(1,33,105,0.08);
}
.form-control::placeholder { color: var(--uk-gray-300); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--uk-gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--uk-gray-900);
    transition: all 0.3s;
    background-color: var(--uk-white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}
.form-select:focus {
    outline: none;
    border-color: var(--uk-blue);
    box-shadow: 0 0 0 4px rgba(1,33,105,0.08);
}
.btn-submit {
    background: var(--gradient-red);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200,16,46,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,16,46,0.4);
}
.btn-submit:active { transform: translateY(0); }
.form-note {
    font-size: 0.82rem;
    color: var(--uk-gray-500);
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.form-note .bi { color: var(--uk-blue); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* ========== MAP ========== */
.map-section { background: var(--uk-white); }
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--uk-gray-200);
    height: 450px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.map-info-card {
    background: var(--uk-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--uk-gray-200);
    height: 100%;
}
.map-info-card h5 { font-weight: 700; color: var(--uk-blue); margin-bottom: 16px; font-size: 1.15rem; }
.map-info-list { list-style: none; padding: 0; margin: 0; }
.map-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--uk-gray-700);
}
.map-info-list li .bi {
    width: 32px; height: 32px;
    background: rgba(200,16,46,0.08);
    color: var(--uk-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--uk-blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(1,33,105,0.3);
}
.map-direction-btn:hover {
    background: var(--uk-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1,33,105,0.4);
    color: #fff;
}

/* ========== FAQ ========== */
.faq-section { background: var(--uk-off-white); position: relative; overflow: hidden; }
.faq-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(200,16,46,0.03);
}
.faq-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%;
}
.faq-item {
    border-bottom: 1px solid var(--uk-gray-100);
    padding: 18px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}
.faq-question h6 {
    font-weight: 600;
    color: var(--uk-gray-700);
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s;
}
.faq-question .bi {
    color: var(--uk-red);
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question h6 { color: var(--uk-blue); }
.faq-item.active .faq-question .bi { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
    font-size: 0.88rem;
    color: var(--uk-gray-500);
    line-height: 1.7;
    margin: 12px 0 0;
    padding-left: 30px;
}

/* ========== SOCIAL CONNECT ========== */
.social-section { background: var(--gradient-blue); position: relative; overflow: hidden; }
.social-section::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(200,16,46,0.15);
}
.social-section::after {
    content: '';
    position: absolute; bottom: -30%; left: -5%;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.social-content { position: relative; z-index: 2; }
.social-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%;
}
.social-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.social-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);
}
.social-card h5 { font-weight: 700; color: #fff; margin-bottom: 6px; font-size: 1.05rem; }
.social-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0 0 16px; }
.social-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--uk-red-light);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-card a:hover { color: #fff; }

/* ========== 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; }
    .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; }
    .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; }
    .contact-form-card { padding: 30px 24px; }
}
@media (max-width: 575px) {
    .contact-form-card { padding: 24px 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); }
}

/* Success Modal */
.success-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.success-modal-overlay.show { display: flex; }
.success-modal {
    background: var(--uk-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: modalPop 0.4s ease;
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.success-modal .success-icon {
    width: 80px; height: 80px;
    background: rgba(40,167,69,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #28a745;
}
.success-modal h3 { font-weight: 800; color: var(--uk-blue); margin-bottom: 12px; font-size: 1.4rem; }
.success-modal p { font-size: 0.95rem; color: var(--uk-gray-500); line-height: 1.7; margin-bottom: 24px; }
.success-modal .btn-close-modal {
    background: var(--uk-blue);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.success-modal .btn-close-modal:hover { background: var(--uk-blue-light); }