/* Destination Page Custom Styles - Final Premium Version */

:root {
    --dest-primary: #002d5b;
    --dest-secondary: #0056b3;
    --dest-accent: #ffb606;
    --dest-light-bg: #f8fbff;
    --dest-red: #e31c3d;
    --dest-text: #333333;
    --dest-text-muted: #555555;
    --dest-card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
.dest-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--dest-light-bg);
}

/* Banner */
.page-title.dest-section {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.page-title.dest-banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-title.dest-banner .auto-container {
    position: relative;
    z-index: 1;
}

.page-title.dest-banner h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 800;
}

.page-title.dest-banner .page-breadcrumb {
    color: #eee;
    font-size: 16px;
    margin-top: 20px;
}

/* Intro Section */
.dest-intro {
    background: #fff;
    padding-top: 140px;
    /* More margin from top to avoid collapse */
}

.dest-intro h2 {
    font-size: 42px;
    color: var(--dest-primary);
    font-weight: 800;
    margin-bottom: 25px;
}

.dest-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dest-text-muted);
}

.flag-image-box {
    position: relative;
    padding: 30px;
}

.flag-image-box:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background: var(--dest-red);
    border-radius: 20px;
    z-index: 0;
}

.flag-image-box .image {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Info Cards Grid */
.dest-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .dest-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .dest-info-grid {
        grid-template-columns: 1fr;
    }

    .dest-section {
        padding: 120px 0;
        position: relative;
        background-color: #fff;
    }
}

.bg-pattern-premium {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Modern Aurora Blobs */
.aurora-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-primary {
    width: 600px;
    height: 600px;
    background: #002d5b;
    top: -200px;
    left: -100px;
}

.blob-secondary {
    width: 500px;
    height: 500px;
    background: #ff5f6d;
    bottom: -150px;
    right: -50px;
    animation-delay: -5s;
}

.blob-accent {
    width: 300px;
    height: 300px;
    background: #ffc371;
    top: 20%;
    right: 15%;
    opacity: 0.08;
    animation-delay: -10s;
}

/* Floating Glass Props */
.glass-prop {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    z-index: 1;
    animation: propFloat 15s infinite ease-in-out;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.1);
    }
}

@keyframes propFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

.dest-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e1e9f4;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dest-badge i {
    color: #ff9800;
    margin-right: 10px;
}

.info-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 2px dotted #cfd8e3;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.info-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 117, 252, 0.08);
    border-color: #2575fc;
    border-style: solid;
    /* Switches to solid on hover for emphasis */
}

.info-card-premium .card-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    color: #2575fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e1e9f4;
}

.info-card-premium h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Red Bullet List */
.dest-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dest-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--dest-text-muted);
    line-height: 1.5;
}

.dest-bullet-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--dest-red);
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive Typography */
.dest-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .dest-main-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .dest-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .dest-intro {
        padding-top: 100px;
    }
}

/* Half Content Section (Quick Facts) */
.half-side-img img {
    border-radius: 20px;
}

.ps-lg-5 {
    padding-left: 50px;
}

/* In-Demand Cards */
.demand-card {
    border-radius: 25px;
    padding: 50px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.demand-card.light {
    background: var(--dest-light-bg);
    color: var(--dest-text);
    border: 1px solid #eee;
}

.demand-card.dark {
    background: #0d1b3e;
}

.demand-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Testimonials */
.testimonial-box {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--dest-card-shadow);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.testimonial-box p {
    font-size: 20px;
    font-style: italic;
    color: #444;
    margin-bottom: 30px;
}

.testimonial-box h5 {
    font-weight: 800;
    color: var(--dest-primary);
}

/* Revamped Creative CTA Section */
.cta-revamp {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 90px rgba(0, 45, 91, 0.08);
    border: 1px solid #eee;
    margin: 100px 0;
}

.cta-revamp .row {
    margin: 0;
}

.cta-revamp .col-lg-7,
.cta-revamp .col-lg-5 {
    padding: 0;
}

.cta-content-side {
    background: #002d5b;
    /* Deep Navy from brand */
    color: #fff;
    padding: 100px 80px;
    height: 100%;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.cta-content-side h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff !important;
    line-height: 1.1;
}

.cta-content-side p {
    font-size: 19px;
    opacity: 0.85;
    max-width: 500px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.cta-image-side {
    position: relative;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-student-revamp {
    width: 130%;
    /* Oversized for impact */
    height: auto;
    object-fit: contain;
    margin-left: -20%;
    /* Pull into the diagonal cut */
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.btn-revamp {
    background: #ff5f6d;
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: #fff !important;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 95, 109, 0.3);
}

.btn-revamp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 95, 109, 0.4);
}

@media (max-width: 991px) {
    .cta-content-side {
        clip-path: none;
        text-align: center;
        padding: 60px 30px;
    }

    .cta-image-side {
        display: none;
    }
}

/* CTA Overlay Student */
.cta-premium {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 40px;
    padding: 80px;
    color: #fff;
    position: relative;
    margin-top: 100px;
}

.cta-premium .col-lg-8 {
    z-index: 2;
}

.cta-premium h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff !important;
}

.cta-premium p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-premium img {
    position: absolute;
    right: 50px;
    bottom: 0;
    width: 400px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .cta-premium img {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .cta-premium img {
        display: none;
    }

    .cta-premium {
        padding: 60px 40px;
    }
}

/* Creative About Canada Section */
.about-canada-creative {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.image-box-premium {
    position: relative;
    padding-right: 50px;
}

.image-box-premium img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-box-premium:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #e31c3d;
    color: #fff;
    padding: 30px 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(227, 28, 61, 0.4);
    animation: bounceSlow 4s infinite ease-in-out;
    z-index: 10;
}

.experience-badge .count {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 15px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-align: center;
    color: #ffd700;
    /* Bright Gold for the request */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-box-premium .sec-title h2 {
    font-size: 48px;
    color: var(--dest-primary);
    font-weight: 800;
}

.content-box-premium .sec-title h2 span {
    color: var(--dest-red);
}

.creative-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.creative-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 17px;
    color: var(--dest-text-muted);
    font-weight: 500;
}

.creative-check-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 22px;
    color: var(--dest-red);
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Global Network Section */
.global-network-section {
    padding: 80px 0;
    background: #fff;
}

.flags-grid-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.flags-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.flags-flex.offset-row {
    padding-left: 40px;
}

.flag-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    transition: transform 0.3s ease;
}

.flag-circle:hover {
    transform: translateY(-10px) scale(1.1);
    z-index: 10;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dest-primary);
    margin-top: 20px;
}

.network-subtitle {
    font-size: 18px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .content-box-premium {
        padding-left: 0 !important;
        margin-top: 40px;
    }

    .content-box-premium .sec-title h2 {
        font-size: 36px;
    }

    .network-title {
        font-size: 28px;
    }

    .flag-circle {
        width: 45px;
        height: 45px;
    }
}

/* Premium Features Section V2 */
.premium-features {
    background: #f0f7ff;
    background-image: radial-gradient(#d1e4ff 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #2575fc;
    top: -100px;
    left: -200px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #e31c3d;
    bottom: -150px;
    right: -100px;
}

.premium-features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(240, 247, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

.dest-info-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 45px 35px;
    box-shadow: 0 20px 50px rgba(0, 45, 91, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px dotted #e1e8f0;
    /* Dotted Border as requested */
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 45, 91, 0.12);
    border-color: #2575fc;
    border-style: solid;
    /* Switches to solid on hover for a sharp effect */
}

.feature-card-v2:hover:before {
    opacity: 1;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrap.color-1 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.icon-wrap.color-2 {
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
}

.icon-wrap.color-3 {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.icon-wrap.color-4 {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.icon-wrap.color-5 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.icon-wrap.color-6 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card-v2 h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dest-primary);
}

.feature-card-v2 p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.check-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-v2 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.check-list-v2 li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #2575fc;
    font-size: 18px;
}

@media (max-width: 991px) {
    .dest-info-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .dest-info-grid-premium {
        grid-template-columns: 1fr;
    }

    .feature-card-v2 {
        padding: 30px;
    }
}

/* Global Network Simplified */
.flags-flex-single {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 30px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.global-network-section {
    padding: 100px 0 60px;
    background: #fff;
}

.network-title {
    font-size: 42px;
    font-weight: 900;
    color: #002d5b;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .flags-flex-single {
        gap: 15px;
    }

    .network-title {
        font-size: 30px;
    }
}

/* Creative ApplyRoute Advantage Section */
.applyroute-advantage-creative {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.advantage-card-wrap {
    background: #002d5b;
    border-radius: 40px;
    padding: 60px;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 45, 91, 0.2);
}

.advantage-card-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.advantage-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
}

.advantage-title span {
    color: #ffd700;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-item-creative {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-item-creative:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: #ffd700;
}

.advantage-item-creative i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
}

.advantage-item-creative h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.advantage-item-creative p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card-wrap {
        padding: 40px 30px;
    }
}

.cta-revamp {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 45, 91, 0.08);
    /* Minimalist shadow */
    margin: 80px 0 100px;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: stretch;
}

.cta-content-side {
    padding: 80px 70px;
    color: #002d5b;
    position: relative;
    z-index: 5;
    flex: 1;
}

.cta-content-side h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #002d5b;
    line-height: 1.2;
}

.cta-content-side h2 span {
    color: #2575fc;
    /* Single creative accent color */
}

.cta-content-side p {
    font-size: 19px;
    color: #5f7c96;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
}

.cta-badge {
    display: inline-block;
    background: #f0f7ff;
    color: #2575fc;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid #ddecff;
}

.btn-revamp {
    background: #62a168;
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 117, 252, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn-revamp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 160, 104, 0.4);
    background: #228741;
    text-decoration: none;
}

.cta-image-side {
    flex: 1;
    position: relative;
    min-height: 100%;
}

.cta-image-wrap-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cta-student-revamp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.cta-revamp:hover {
    box-shadow: 0 40px 100px rgba(0, 45, 91, 0.15);
}

.cta-revamp:hover .cta-student-revamp {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .cta-revamp {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-side {
        padding: 50px 30px;
    }

    .cta-content-side p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-image-side {
        width: 100%;
        min-height: 350px;
        padding: 0;
    }
}