/* Variables */
:root {
    --primary-blue: #007bff;
    --light-blue: #eef2f5;
    --dark-blue: #242855;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-blue: linear-gradient(135deg, #e0f2ff 0%, #ffffff 100%);
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

html {
    scroll-padding-top: 6rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-blue);
    background-color: var(--light-blue);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Prevent first-paint narrow column in responsive: ensure layout uses full viewport */
body > .navbar,
body > header,
body > section,
body > footer {
    width: 100%;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    max-height: 70px;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.navbar-brand img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    display: block;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-blue) !important;
    margin: 0 0.8rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 2.2rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
    color: var(--white);
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
    left: -100%;
}

.btn-primary-custom:hover::after {
    left: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    background: var(--gradient-blue);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-blue);
}

.text-gradient {
    background: linear-gradient(135deg, #0d2c52 0%, #007bff 50%, #4DA6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 123, 255, 0.1));
}

.hero-desc {
    font-size: 1.25rem;
    color: #5a6b7c;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
    z-index: 1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #007bff;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #4DA6FF;
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 50px) rotate(10deg);
    }

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

/* Company Card */
.company-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.08);
    padding: 0;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(13, 44, 82, 0.04);
    overflow: hidden;
    position: relative;
}

.company-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.3);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 0.75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.company-left-col {
    background: linear-gradient(to bottom, #fcfdfe, #f8faff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    height: 100%;
    border-right: 1px solid rgba(0, 123, 255, 0.05);
}

.logo-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.company-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: var(--transition);
}

.company-card:hover .company-logo {
    transform: scale(1.05);
}

.company-content {
    padding: 2rem;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--dark-blue);
}

.verified-badge {
    background: #e7f7ed;
    color: #218838;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(33, 136, 56, 0.1);
}

.clutch-badge {
    background: #fff9e6;
    color: #d39e00;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(211, 158, 0, 0.1);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-badge {
    background: #f1f6ff;
    color: #4b5e7d;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.info-badge:hover {
    background: #e0ebff;
    color: var(--primary-blue);
}

.info-badge i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.divider-custom {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 1.5rem 0;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: #fff;
    border: 1px solid #e9ecef;
    color: var(--dark-blue);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.service-tag i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    opacity: 0.8;
}

.company-card:hover .service-tag {
    border-color: rgba(0, 123, 255, 0.2);
    background: #f8fbff;
    color: var(--primary-blue);
}

/* Footer (Matching Updates) */
/* Footer (Dark Premium Redesign) */
footer {
    background: linear-gradient(135deg, #0d2c52 0%, #001e3d 100%);
    padding: 70px 0 0;
    border-top: none;
    color: #fff;
    position: relative;
}

.footer-logo-wrapper img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* .trust-badges img {
    filter: brightness(0) invert(1) grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.trust-badges img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(0) invert(1) grayscale(0);
} */

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-blue);
    color: #fff;
}

.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.2);
}

.bottom-bar span,
.bottom-bar .text-muted,
.bottom-bar .text-secondary {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bottom-bar a {
    color: #4DA6FF !important;
    text-decoration: none;
    transition: var(--transition);
}

.bottom-bar a:hover {
    color: #fff !important;
}

/* .bottom-bar img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
} */


/* Explorer Slider Section */
.explorer-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.04);
    border: 1px solid rgba(0, 123, 255, 0.05);
}

.explorer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.explorer-img-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #f8fbff;
}

.explorer-card .main-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.explorer-card:hover .main-img {
    transform: scale(1.05);
}

.flag-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 30px;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.flag-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.explorer-card-body {
    padding: 1.5rem;
}

.explorer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.5;
    margin: 0;
    transition: var(--transition);
}

.explorer-card:hover .explorer-title {
    color: var(--primary-blue);
}

/* Custom Carousel Dots */
#explorerCarousel .carousel-indicators {
    bottom: -50px;
}

#explorerCarousel .carousel-indicators [button] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e0;
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}

#explorerCarousel .carousel-indicators .active {
    background-color: var(--primary-blue);
    width: 25px;
    border-radius: 10px;
}



/* FAQ Accordion */
.accordion-item {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-blue);
    background: white;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: rgba(0, 123, 255, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Contact Form */
.floating-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

/* Gradient button (used in nav & CTAs) */
.gradient-btn {
    background: var(--gradient-primary) !important;
    border: none !important;
}

.gradient-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%) !important;
    color: var(--white) !important;
}

/* ========== Blog Listing & Detail ========== */
.hero-blog {
    background: var(--gradient-blue);
    padding: 7.5rem 1.5rem 5rem;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blog-inner {
    max-width: 720px;
    width: 100%;
}

.hero-blog-title {
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Gradient for "Blogs" – dark blue (left) to sky blue (right) */
.hero-blog-gradient {
    background: linear-gradient(90deg, #0d2c52 0%, #007bff 45%, #4da6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-blog-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #5a6b7c;
}

/* Blog listing: match index theme (dark-blue headings, primary accent) */
.blog-card-title {
    color: var(--dark-blue);
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-blue);
}

.blog-read-more {
    color: var(--primary-blue);
    transition: var(--transition);
}

.blog-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                border-color 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.06);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 123, 255, 0.14);
    border-color: rgba(0, 123, 255, 0.12);
}

.blog-card:hover .blog-read-more {
    color: #0056b3;
}

.blog-card-img-wrap,
.blog-card-featured .position-relative {
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-featured .blog-card-img {
    height: 100%;
    min-height: 280px;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card .blog-card-img {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-category-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 2;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.18s ease-out;
    pointer-events: none;
}

.blog-card:hover .blog-category-badge {
    opacity: 0;
}

.blog-category-badge-inline {
    background: #e7f0ff;
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-article p {
    margin-bottom: 1.25rem;
    color: #5a6b7c;
    line-height: 1.8;
}

.blog-article .lead {
    font-size: 1.15rem;
}

.blog-detail-hero {
    background: var(--gradient-blue);
    padding-top: 7.5rem; /* clear of fixed navbar */
    padding-bottom: 2.5rem;
    min-height: 0;
}

.blog-detail-hero-inner {
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.blog-detail-breadcrumb {
    margin-bottom: 0.75rem;
}

.blog-detail-hero .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(0, 0, 0, 0.4);
}

.blog-detail-meta {
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.blog-detail-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.25;
    max-width: 100%;
}

.blog-detail-featured-img {
    display: block;
    width: 100%;
}

.blog-detail-featured-img img {
    display: block;
    width: 100%;
    vertical-align: top;
}

.blog-detail-hero .breadcrumb {
    padding-left: 0;
    font-size: 0.9rem;
}

.blog-article h2,
.blog-article h3 {
    color: var(--dark-blue);
    font-family: 'Outfit', sans-serif;
    text-align: left;
}

.blog-sidebar .recent-blog-item:hover h4 {
    color: var(--primary-blue) !important;
}

.recent-blog-item {
    transition: var(--transition);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.recent-blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-blog-item:first-child {
    padding-top: 0;
}

.recent-blog-item:hover {
    opacity: 0.9;
}

.recent-blog-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-blog-item-content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.blog-author-card img {
    flex-shrink: 0;
}

/* Blog responsive */
@media (max-width: 991.98px) {
    .blog-card-featured .blog-card-img {
        min-height: 220px;
    }

    .hero-blog {
        padding: 6.5rem 1rem 4rem;
        min-height: 300px;
    }

    .hero-blog-title {
        font-size: 2rem;
    }

    .blog-detail-hero {
        padding-top: 6.5rem;
        padding-bottom: 2rem;
    }

    .blog-detail-hero-inner {
        padding-top: 0.25rem;
    }

    .blog-sidebar.sticky-top {
        position: relative !important;
        top: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .blog-card-img {
        height: 180px;
    }

    .explore-location-img-wrap {
        height: 180px;
    }

    .hero-blog-title {
        font-size: 1.75rem;
    }

    .hero-blog-desc {
        font-size: 1rem;
    }
}

/* ========== Write For Us page ========== */
.wfu-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 123, 255, 0.08);
    transition: var(--transition);
}

.wfu-benefit-card:hover {
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.08);
}

.wfu-benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
}

.wfu-rules-list .text-muted {
    font-size: 0.9rem;
}

.wfu-cta-box {
    background: var(--gradient-blue);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

/* List your Business modal – large, eye-catching */
.list-business-modal-dialog {
    max-width: 95%;
}

@media (min-width: 576px) {
    .list-business-modal-dialog {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .list-business-modal-dialog {
        max-width: 680px;
    }
}

@media (min-width: 992px) {
    .list-business-modal-dialog {
        max-width: 800px;
    }
}

.list-business-modal-content {
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.list-business-modal-header {
    background: linear-gradient(135deg, #0d2c52 0%, var(--dark-blue) 50%, #1a3a6e 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.list-business-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
}

.list-business-modal-header .modal-title {
    font-family: 'Outfit', sans-serif;
}

.list-business-modal-body {
    background: linear-gradient(to bottom, #fafbfc 0%, #fff 100%);
}

.list-business-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.list-business-input {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    padding: 0.65rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.list-business-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    outline: 0;
}

.list-business-input::placeholder {
    color: #94a3b8;
}

.list-business-modal-footer {
    background: #fff;
    padding-top: 0;
}

.btn-send-message {
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: #fff;
}

/* Thank you modal – eye-catching */
.thank-you-modal-dialog .modal-content {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-modal-content {
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 123, 255, 0.08);
}

.thank-you-modal-top {
    height: 6px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
}

.thank-you-modal-body {
    padding-top: 2rem;
}

.thank-you-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.25);
    animation: thankYouIconPop 0.5s ease-out;
}

@keyframes thankYouIconPop {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-icon {
    font-size: 3rem;
    color: #28a745;
}

.thank-you-modal-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
}

.thank-you-desc {
    max-width: 320px;
    line-height: 1.6;
}

.thank-you-cta-btn {
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thank-you-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: #fff;
}

/* ========== 404 Page ========== */
.page-404-section {
    padding-top: 7rem;
    background: var(--gradient-blue);
}

.error-404-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(6rem, 18vw, 11rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(13, 44, 82, 0.12) 0%, rgba(0, 123, 255, 0.2) 50%, rgba(77, 166, 255, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.error-404-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.85;
}

.error-404-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.error-404-desc {
    font-size: 1.1rem;
    max-width: 440px;
    line-height: 1.6;
}

.page-404-section .btn-outline-primary {
    border-color: rgba(0, 123, 255, 0.4);
    color: var(--primary-blue);
}

.page-404-section .btn-outline-primary:hover {
    background: rgba(0, 123, 255, 0.08);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ========== Explore Listing (theme match with blog) ========== */
.explore-location-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                border-color 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.06);
}

.explore-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 123, 255, 0.14);
    border-color: rgba(0, 123, 255, 0.12);
}

.explore-location-img-wrap {
    height: 220px;
    overflow: hidden;
    background: var(--gradient-blue);
}

.explore-location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.explore-location-card:hover .explore-location-img {
    transform: scale(1.05);
}

.explore-location-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(36, 40, 85, 0.25) 100%);
    pointer-events: none;
}

.explore-location-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: opacity 0.18s ease-out;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
}

.explore-location-card:hover .explore-location-badge {
    opacity: 0;
}

.explore-location-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.25s ease;
}

.explore-location-card:hover .explore-location-title {
    color: var(--primary-blue);
}

.explore-location-body .explore-read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.2s ease;
}

.explore-location-card:hover .explore-location-body .explore-read-more {
    color: #0056b3;
    transform: translateX(4px);
}

/* Explore Detail */

/* Explore Detail */
.explore-detail-breadcrumb .breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.explore-detail-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.explore-detail-breadcrumb .breadcrumb-item.active {
    color: var(--dark-blue);
}

.explore-detail-company .col-md-3.d-flex {
    max-width: 100%;
}

.explore-detail-logo {
    display: block;
    max-height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.explore-detail-table td {
    padding: 0.25rem 0.5rem 0.25rem 0;
    vertical-align: top;
}

.explore-detail-table td:first-child {
    min-width: 110px;
}

.explore-detail-company {
    transition: var(--transition);
}

.explore-detail-company:hover {
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
}

.explore-more-card {
    transition: var(--transition);
}

.explore-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.12);
}

/* Explore More Section - Carousel & Creative Cards */
.explore-more-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.explore-more-section .divider {
    width: 60px;
    height: 4px;
}

.explore-more-indicators {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Dots placed after (below) the card slider */
.explore-more-indicators-bottom {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

#exploreMoreCarousel .explore-more-indicators-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.explore-more-indicators button,
.explore-more-indicators-bottom button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.3);
    border: none;
    margin: 0 4px;
    transition: var(--transition);
}

.explore-more-indicators button.active,
.explore-more-indicators-bottom button.active {
    background: var(--gradient-primary);
    width: 28px;
    border-radius: 5px;
}

.explore-more-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 1;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.35);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.explore-more-control:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 123, 255, 0.45);
}

.explore-more-control.carousel-control-prev { left: -24px; }
.explore-more-control.carousel-control-next { right: -24px; }

@media (max-width: 991.98px) {
    .explore-more-control.carousel-control-prev { left: 0; }
    .explore-more-control.carousel-control-next { right: 0; }
}

/* Swiper: 3 items visible, move 1, loop */
.explore-more-swiper-wrap {
    padding-bottom: 3rem;
}

.explore-more-swiper {
    overflow: hidden;
}

.explore-more-swiper .swiper-slide {
    height: auto;
}

.explore-more-swiper-prev,
.explore-more-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.35);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-more-swiper-prev:hover,
.explore-more-swiper-next:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 123, 255, 0.45);
    color: #fff;
}

.explore-more-swiper-prev { left: -24px; }
.explore-more-swiper-next { right: -24px; }

@media (max-width: 991.98px) {
    .explore-more-swiper-prev { left: 0; }
    .explore-more-swiper-next { right: 0; }
}

.explore-more-swiper-pagination {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 1.5rem;
}

.explore-more-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    border: none;
    margin: 0 !important;
    opacity: 1;
    transition: var(--transition);
}

.explore-more-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gradient-primary);
    width: 28px;
    border-radius: 5px;
}

/* Creative card - bigger size, gradient accent, icon */
.explore-more-card-creative {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.explore-more-card-creative:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.explore-more-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.explore-more-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--gradient-blue);
}

.explore-more-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-more-card-creative:hover .explore-more-card-img {
    transform: scale(1.08);
}

.explore-more-card-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
}

.explore-more-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.explore-more-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.explore-more-card-creative:hover .explore-more-card-title {
    color: var(--primary-blue);
}

.explore-more-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.explore-more-card-creative:hover .explore-more-card-cta {
    transform: translateX(4px);
}

.explore-more-card-viewall .explore-more-card-accent {
    background: linear-gradient(90deg, #17a2b8 0%, #20c997 100%);
}

.explore-more-card-viewall .explore-more-card-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}
