:root {
    --primary-color: #0d3b66;
    --accent-color: #d62828;
    --light-bg: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --soft-blue: #eef2f7;
    --whatsapp-green: #25d366;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-height: 70px;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-brand img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    height: 100%;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    color: #444 !important;
}

/* Buttons */
.btn-consult {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-consult:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

.btn-submit {
    background-color: var(--accent-color);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    color: white;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #b91d1d;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.85)), 
                url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)), 
                url('https://images.unsplash.com/photo-1541339907198-e08756ebafe3?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Destination Hero */
.destination-hero {
    background: linear-gradient(to right, rgba(13, 59, 102, 0.95), rgba(13, 59, 102, 0.7)), 
                url('https://images.unsplash.com/photo-1486299267070-83823f5448dd?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 20px;
    padding: 40px;
    background: rgb(249, 242, 242);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.1);
}

/* Value Cards */
.value-card {
    border: none;
    padding: 30px;
    border-radius: 20px;
    background: white;
    transition: 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Info Cards */
.info-card {
    border: none;
    border-radius: 20px;
    background: white;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 59, 102, 0.1);
}

/* Booking Card */
.booking-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: -60px;
    background: white;
}

/* City Cards */
.city-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.city-card:hover img {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: rgb(32, 31, 31);
    padding: 80px 0;
}

/* Form Styling */
.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(12, 12, 12, 0.1);
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .video-thumbnail { height: 250px; }
    .booking-card { margin-top: -30px; }
}

/* Filter Section Styles */
.filter-section {
    border: 1px solid rgba(13, 59, 102, 0.1);
}

.dropdown-toggle::after {
    margin-left: 0.5em;
}

.filter-item.active,
.filter-country.active,
.filter-program.active,
.filter-duration.active {
    background-color: var(--primary-color);
    color: white;
}

.filter-item.active:hover,
.filter-country.active:hover,
.filter-program.active:hover,
.filter-duration.active:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Active Filters Badges */
#activeFiltersDisplay .badge {
    padding: 8px 12px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

#activeFiltersDisplay .badge i {
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 5px;
}

#activeFiltersDisplay .badge i:hover {
    opacity: 1;
}

/* Destination Items Animation */
.destination-item {
    transition: all 0.3s ease;
}

.destination-card {
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

/* No Results Message */
.no-results-message {
    display: none;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Form validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Responsive Filter */
@media (max-width: 768px) {
    .filter-section {
        padding: 20px !important;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
    }
    
    .dropdown-menu {
        width: 100%;
    }
}

/* Footer Base Styles */
footer {
    background: linear-gradient(135deg, #101010 0%, #111111 100%);
    color: #ccc;
    padding: 80px 0 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Footer Container */
.footer-container {
    position: relative;
    z-index: 1;
}

/* Footer Logo & Brand */
.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand .tagline {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 25px;
}

/* Footer Links */
.footer-links h5 {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a i {
    font-size: 0.8rem;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Contact Info */
.footer-contact h5 {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-item:hover .contact-icon {
    background: rgba(214, 40, 40, 0.2);
    transform: scale(1.1);
}

.contact-details h6 {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

/* Social Media */
.footer-social {
    margin-top: 30px;
}

.social-title {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 30px;
}

.newsletter-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #b91d1d;
    transform: translateY(-2px);
}

.newsletter-note {
    color: #777;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-menu a {
    color: #aaa;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
}

.policies {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::after {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--whatsapp-green);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 5px 15px rgba(13, 59, 102, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.3);
}

/* Office Hours */
.office-hours {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

.office-hours h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-hours p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

.office-hours p span:last-child {
    color: white;
    font-weight: 500;
}

.services-header {
    background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)), 
                url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-blue);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

/* Process Steps */
.step-item {
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

/* CTA Section */
.cta-banner {
    background-color: var(--primary-color);
    color: white;
    border-radius: 24px;
    padding: 60px;
    margin-top: 80px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Unique styles for each cursor type */
.pointer .service-card {
    cursor: pointer;  
    border: 2px solid #ff6464;
}

.pointer:hover .service-card{
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 15px #646cff50;
}

/* Testimonials Archive */
.testimonial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Study Abroad Countries CSS */
/* UK, Canada, Australia, Singapore */

/* Country-specific Hero Backgrounds */
.uk-hero {
    background: linear-gradient(rgba(10, 40, 100, 0.9), rgba(5, 20, 60, 0.9)), url('https://images.unsplash.com/photo-1486299267070-83823f5448dd?w=1200&auto=format&fit=crop&q=80');
}

.canada-hero {
    background: linear-gradient(rgba(10, 40, 100, 0.9), rgba(5, 20, 60, 0.9)), url('https://images.unsplash.com/photo-1601859057596-f0c49e395b77?w=1200&auto=format&fit=crop&q=80');
}

.australia-hero {
    background: linear-gradient(rgba(10, 40, 100, 0.9), rgba(5, 20, 60, 0.9)), url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?w=1200&auto=format&fit=crop&q=80');
}

.singapore-hero {
    background: linear-gradient(rgba(10, 40, 100, 0.9), rgba(5, 20, 60, 0.9)), url('https://images.unsplash.com/photo-1534008897995-27a23e859048?w=1200&auto=format&fit=crop&q=80');
}

/* Info Cards with Icon */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a2864, #1e4b8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

/* City Cards with Overlay */
.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

/* University Cards */
.university-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.university-card:hover {
    transform: translateY(-5px);
}

.uni-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.uni-content {
    padding: 20px;
}

/* Course Cards */
.course-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Country-specific CTA Sections */
.uk-services-section,
.uk-cta-section {
    background: linear-gradient(135deg, #0a2864 0%, #1e4b8a 100%);
}

.canada-cta-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}

.australia-cta-section,
.singapore-cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Common Intake Box */
.intake-box {
    width: 80px;
}

/* Stat Box Common */
.stat-box {
    min-width: 120px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Team Section */
.team-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    text-align: center;
    transition: 0.3s;
}

.team-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.team-info {
    padding: 20px;
}

/* Roadmap Timeline Styles */
.roadmap {
    position: relative;
    padding-left: 15px;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        #dc3545 0%, 
        #dc3545 20px, 
        #dee2e6 20px, 
        #dee2e6 40px, 
        #dc3545 40px, 
        #dc3545 60px, 
        #dee2e6 60px, 
        #dee2e6 80px, 
        #dc3545 80px, 
        #dc3545 100px, 
        #dee2e6 100px, 
        #dee2e6 120px
    );
    background-size: 2px 20px;
    z-index: 0;
}

.roadmap-step .step-number {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
}

.step-content {
    padding-top: 8px;
}

.step-content h5 {
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.roadmap-step:hover .step-content h5 {
    color: #dc3545;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 500px;
}

/* Video Cards */
.video-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden !important;
    background: linear-gradient(145deg, #ffffff, #f8f9fa) !important;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important;
}

.video-card:hover::before {
    transform: scaleX(1);
}

.video-card .ratio {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-card .ratio iframe {
    transition: transform 0.5s ease;
    border: none;
}

.video-card:hover .ratio iframe {
    transform: scale(1.02);
}

.video-card .p-4 {
    background: white;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card h5 {
    color: #212529;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 20px;
}

.video-card h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
}

.video-card .text-muted {
    font-size: 0.85rem;
    color: #6c757d !important;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.video-card .text-muted::before {
    content: '🎓';
    position: absolute;
    left: 0;
    top: 0;
}

/* Play button overlay for video cards */
.video-card .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-card .play-overlay i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-step {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease forwards;
}

.roadmap-step:nth-child(1) { animation-delay: 0.1s; }
.roadmap-step:nth-child(2) { animation-delay: 0.1s; }
.roadmap-step:nth-child(3) { animation-delay: 0.1s; }
.roadmap-step:nth-child(4) { animation-delay: 0.1s; }

.footer-container > .row > div {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-container > .row > div:nth-child(1) { animation-delay: 0.1s; }
.footer-container > .row > div:nth-child(2) { animation-delay: 0.2s; }
.footer-container > .row > div:nth-child(3) { animation-delay: 0.3s; }
.footer-container > .row > div:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1199.98px) {
    footer {
        padding: 70px 0 25px;
    }
    
    .whatsapp-btn::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    footer {
        padding: 60px 0 20px;
        margin-top: 80px;
    }
    
    .footer-links,
    .footer-contact {
        margin-top: 40px;
    }
    
    .footer-links h5,
    .footer-contact h5 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 90px;
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 50px 0 20px;
        margin-top: 60px;
    }
    
    .footer-brand h3 {
        font-size: 1.6rem;
    }
    
    .footer-links,
    .footer-contact {
        margin-top: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .destination-hero {
        min-height: 60vh;
        padding: 60px 0;
        text-align: center;
    }
    
    .destination-hero .display-3 {
        font-size: 2.5rem;
    }
    
    .info-card, .course-card, .service-card {
        padding: 20px;
    }
    
    .city-card {
        height: 250px;
    }
    
    .video-card .p-4 {
        padding: 1rem !important;
    }
    
    .video-card .play-overlay {
        width: 50px;
        height: 50px;
    }
    
    .video-card .play-overlay i {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    footer {
        padding: 40px 0 15px;
        margin-top: 50px;
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .roadmap::before {
        display: none;
    }
    
    .roadmap-step {
        flex-direction: column;
        align-items: flex-start !important;
        margin-bottom: 2rem !important;
    }
    
    .video-card {
        border-radius: 12px !important;
    }
    
    .video-card h5 {
        font-size: 1rem;
        padding-left: 16px;
    }
    
    .video-card .text-muted {
        font-size: 0.8rem;
        padding-left: 16px;
    }
    
    .video-card h5::before {
        width: 6px;
        height: 6px;
    }
}

.navbar-nav .nav-link {
    padding: 10px 15px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
    }
}