/* ============================================
   1. ROOT VARIABLES
   ============================================ */
:root {
    --primary-red: #8B0000;
    --primary-maroon: #5C0000;
    --primary-dark: #3A0000;
    --primary-gold: #C9A84C;
    --primary-white: #FFFFFF;
    --light-gray: #F8F5F0;
    --dark-gray: #2C2C2C;
    --text-dark: #1A1A1A;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 50px rgba(139, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--light-gray);
    color: var(--text-dark);
    scroll-behavior: smooth;
    padding-top: 100px;
}

h1, h2, h3, h4, h5, .navbar-brand, .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ============================================
   2. TOP HEADER
   ============================================ */
.top-header {
    background: var(--primary-red);
    color: #fff;
    padding: 6px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.top-header-left span {
    margin-right: 15px;
}

.top-header-left .separator {
    opacity: 0.3;
    margin: 0 5px;
}

.top-header-left i {
    margin-right: 6px;
    color: var(--primary-gold);
}

.top-header-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 0.8rem;
    transition: var(--transition);
    margin-left: 4px;
}

.top-header-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ============================================
   3. NAVIGATION
   ============================================ */
.navbar {
    background: var(--primary-white) !important;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    padding: 8px 0;
}

.navbar-brand {
    padding: 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary-red);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(139,0,0,0.1);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 7px;
    color: var(--primary-gold);
    display: block;
    margin-top: -3px;
    font-weight: 700;
}

.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary-red);
    transition: var(--transition);
    border-radius: 4px;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-red) !important;
}

.apply-now-btn {
    background: var(--primary-red);
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    display: inline-block;
    font-size: 0.95rem;
}

.apply-now-btn:hover {
    background: var(--primary-maroon);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.apply-now-btn::before {
    display: none !important;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn-red {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-red:hover {
    background: var(--primary-maroon);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.35);
}

.btn-outline-red {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.25);
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: #d4b85a;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.4);
}

/* ============================================
   5. HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 600px;
    height: 600px;
    background: rgba(255,215,0,0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,215,0,0.03);
    border-radius: 50%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero h1 .gold-text {
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 550px;
    animation: fadeInUp 1.2s ease;
}

.hero .btn-group {
    animation: fadeInUp 1.4s ease;
}

.hero .stat-box {
    background: rgba(255,255,255,0.08);
    padding: 25px 15px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    animation: fadeInUp 1.6s ease;
}

.hero .stat-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.hero .stat-box h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
}

/* ============================================
   6. SECTION TITLES
   ============================================ */
.section-title {
    font-weight: 900;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 4px;
}

.section-title .gold-text {
    color: var(--primary-gold);
}

/* ============================================
   7. PAGE HEADER / TITLE BAR
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 80px 0 50px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255,215,0,0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,215,0,0.03);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.page-header h1 .gold-text {
    color: var(--primary-gold);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
    font-size: 1.2rem;
}

/* ============================================
   8. APPLY PAGE TITLE BAR
   ============================================ */
.apply-title-bar {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 70px 0 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.apply-title-bar::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 400px;
    height: 400px;
    background: rgba(255,215,0,0.05);
    border-radius: 50%;
}

.apply-title-bar::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,215,0,0.03);
    border-radius: 50%;
}

.apply-title-bar h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.apply-title-bar h1 .gold-text {
    color: var(--primary-gold);
}

.apply-title-bar p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.apply-title-bar .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.apply-title-bar .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.apply-title-bar .breadcrumb-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-title-bar .breadcrumb-item a:hover {
    color: #fff;
}

.apply-title-bar .breadcrumb-item.active {
    color: #fff;
}

.apply-title-bar .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
}

/* ============================================
   9. CARDS
   ============================================ */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.country-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.country-card .country-flag {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.country-card h5 {
    color: var(--primary-red);
    font-weight: 700;
}

.country-card-full {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.country-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.country-card-full .country-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.country-card-full .country-flag-large {
    font-size: 3.5rem;
}

.country-card-full .country-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.country-card-full .country-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   10. TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-red);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .student-name {
    font-weight: 700;
    color: var(--primary-red);
}

.testimonial-card-full {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card-full .student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-card-full .student-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-card-full .testimonial-text {
    font-style: italic;
    color: #555;
}

/* ============================================
   11. BLOG
   ============================================ */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card .blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--primary-red);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-card .blog-body {
    padding: 25px;
}

.blog-card .blog-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-card .blog-body h5 {
    color: var(--primary-red);
    font-weight: 700;
    margin: 10px 0;
}

/* ============================================
   12. COUNTRY DETAIL
   ============================================ */
.country-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.country-detail-card .country-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.country-detail-card .country-flag-large {
    font-size: 4rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--primary-red);
    margin-right: 10px;
}

/* ============================================
   13. SIDEBAR
   ============================================ */
.sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.related-country-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}

.related-country-link:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.related-country-link:last-child {
    border-bottom: none;
}

/* ============================================
   14. APPLY FORM FULLSCREEN
   ============================================ */
.apply-fullscreen {
    min-height: calc(100vh - 140px);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.apply-fullscreen::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    animation: floatGlobe 20s infinite linear;
}

.apply-fullscreen::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 50%;
    animation: floatGlobe 25s infinite linear reverse;
}

@keyframes floatGlobe {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3); }
    50% { box-shadow: 0 15px 60px rgba(139, 0, 0, 0.5); }
    100% { box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3); }
}

.form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-card .form-subtitle {
    color: #666;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--primary-red);
    margin-right: 6px;
    width: 18px;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
    background: #fff;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

.submit-btn {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn .btn-arrow {
    display: inline-block;
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(8px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

/* ============================================
   15. APPLY INFO
   ============================================ */
.apply-info .apply-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.apply-info .apply-feature i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.apply-form-container,
.contact-form-container,
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
}

/* ============================================
   16. CONTACT
   ============================================ */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    /*margin-top: 5px;
    width: 30px;*/
}

/* ============================================
   17. VALUE CARDS
   ============================================ */
.value-card {
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* ============================================
   18. BLOG DETAIL
   ============================================ */
.blog-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.blog-detail-card .blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-detail-card .blog-content h2,
.blog-detail-card .blog-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-detail-card .blog-content ul {
    padding-left: 20px;
}

.blog-detail-card .blog-content ul li {
    margin-bottom: 8px;
}

.recent-post-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.3s;
}

.recent-post-link:hover {
    color: var(--primary-red);
}

.recent-post-link:last-child {
    border-bottom: none;
}

.recent-post-link h6 {
    margin-bottom: 2px;
}

/* ============================================
   19. FOOTER
   ============================================ */
.professional-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--primary-white);
}

.footer-brand .logo-sub {
    color: var(--primary-gold);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-main h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-main h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.newsletter-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.15);
}

.btn-subscribe {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 14px 24px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: #d4b85a;
    color: var(--primary-dark);
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-contact p i {
    color: var(--primary-gold);
    width: 20px;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ============================================
   20. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   21. ALERTS
   ============================================ */
.alert {
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ============================================
   22. MAP
   ============================================ */
.map-container iframe {
    display: block;
    width: 100%;
}

/* ============================================
   23. RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.5rem; }
    .top-header-left span { font-size: 0.75rem; }
    .top-header-left .separator { display: none; }
    .top-header-left span:last-child { display: none; }
    .page-header { padding: 60px 0 40px; }
    .apply-title-bar { padding: 55px 0 35px; }
    .apply-title-bar h1 { font-size: 2.5rem; }
    .form-card { padding: 35px 30px; }
    .form-card h2 { font-size: 1.8rem; }
    .apply-fullscreen { padding: 40px 0; min-height: auto; }
}

@media (max-width: 768px) {
    body { padding-top: 90px; }
    
    .top-header { font-size: 0.7rem; padding: 6px 0; }
    .top-header-left span:first-child { margin-right: 0; }
    .top-header-social a { width: 25px; height: 25px; line-height: 25px; font-size: 0.7rem; }
    
    .navbar { top: 36px; padding: 10px 0; }
    .logo-text { font-size: 1.6rem; }
    .logo-sub { font-size: 0.6rem; letter-spacing: 4px; }
    
    .navbar .nav-link { padding: 6px 12px !important; font-size: 0.85rem; }
    .apply-now-btn { padding: 6px 16px !important; font-size: 0.8rem; }
    
    .hero { padding: 70px 0 50px; }
    .hero h1 { font-size: 2rem; }
    .hero .stat-box h3 { font-size: 2rem; }
    
    .page-header { padding: 50px 0 30px; text-align: center; }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 1rem; }
    .page-header .breadcrumb { justify-content: center !important; margin-top: 10px; }
    
    .apply-title-bar { padding: 45px 0 25px; }
    .apply-title-bar h1 { font-size: 2rem; }
    .apply-title-bar p { font-size: 1rem; }
    
    .section-title { font-size: 1.8rem; }
    
    .footer-main { padding: 40px 0 20px; }
    .footer-bottom-links { justify-content: center; gap: 15px; flex-wrap: wrap; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 10px; }
    
    .form-card { padding: 25px 20px; border-radius: 20px; }
    .form-card h2 { font-size: 1.5rem; }
    .form-icon { width: 60px; height: 60px; font-size: 1.8rem; }
    .form-control, .form-select { padding: 10px 14px; font-size: 0.9rem; }
    .submit-btn { font-size: 0.95rem; padding: 14px 20px; border-radius: 12px; }
    .apply-fullscreen::before, .apply-fullscreen::after { display: none; }
}

@media (max-width: 576px) {
    body { padding-top: 80px; }
    .hero h1 { font-size: 1.6rem; }
    .top-header-left span:first-child { font-size: 0.6rem; }
    .top-header-social { display: none; }
    .navbar { top: 32px; }
    
    .page-header { padding: 40px 0 25px; }
    .page-header h1 { font-size: 1.6rem; }
    .page-header p { font-size: 0.9rem; }
    
    .apply-title-bar { padding: 35px 0 20px; }
    .apply-title-bar h1 { font-size: 1.6rem; }
    .apply-title-bar p { font-size: 0.9rem; }
}




/* ===== CONTACT SOCIAL ICONS - PROFESSIONAL ===== */
.contact-social-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.contact-social-section h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Individual Colors */
.social-icon.facebook {
    background: #1877f2;
}
.social-icon.facebook:hover {
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.instagram:hover {
    box-shadow: 0 12px 30px rgba(225, 48, 108, 0.4);
}

.social-icon.youtube {
    background: #ff0000;
}
.social-icon.youtube:hover {
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.social-icon.linkedin {
    background: #0a66c2;
}
.social-icon.linkedin:hover {
    box-shadow: 0 12px 30px rgba(10, 102, 194, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    .contact-social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .contact-social-icons {
        gap: 8px;
    }
}




/* ===== NAVBAR LOGO - FINAL ===== */
.navbar-logo {
    height: 55px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-logo {
        height: 40px !important;
        max-height: 45px !important;
    }
    .navbar-brand .logo-text {
        font-size: 1.4rem !important;
    }
    .navbar-brand .logo-sub {
        font-size: 0.5rem !important;
        letter-spacing: 3px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar-logo {
        height: 32px !important;
        max-height: 36px !important;
    }
    .navbar-brand .logo-text {
        font-size: 1.1rem !important;
    }
    .navbar-brand .logo-sub {
        font-size: 0.4rem !important;
        letter-spacing: 2px !important;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .navbar-logo {
        height: 26px !important;
        max-height: 30px !important;
    }
    .navbar-brand .logo-text {
        font-size: 0.9rem !important;
    }
    .navbar-brand .logo-sub {
        font-size: 0.35rem !important;
        letter-spacing: 1.5px !important;
    }
}











