/* Mifuto Custom Styles */
:root {
    --primary-color: #18458B;
    --secondary-color: #F9B90F;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Override Bootstrap py-5 padding - Reduced from 3rem to 2rem */
.py-5 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Responsive py-5 padding */
@media (max-width: 768px) {
    .py-5 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

/* Header Styles */
.main-header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-login {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #e0a800;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Login Banner */
.login-banner {
    background: linear-gradient(135deg, rgba(249, 185, 15, 0.2) 0%, rgba(24, 69, 139, 0.1) 100%);
    border-top: 3px solid var(--secondary-color);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 185, 15, 0.1) 0%, rgba(24, 69, 139, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-banner:hover {
    background: linear-gradient(135deg, rgba(249, 185, 15, 0.25) 0%, rgba(24, 69, 139, 0.15) 100%);
    border-top-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 185, 15, 0.3);
}

.login-banner:hover::before {
    opacity: 1;
}

.login-banner-content {
    position: relative;
    z-index: 1;
}

.login-banner-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.login-banner-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.login-banner-header .bi-star-fill {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.login-banner-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.login-banner-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-style: italic;
}

.btn-login-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e0a800 100%);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(249, 185, 15, 0.4);
    position: relative;
    z-index: 2;
}

.btn-login-banner:hover {
    background: linear-gradient(135deg, #e0a800 0%, var(--secondary-color) 100%);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 185, 15, 0.5);
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.15) 0%, rgba(249, 185, 15, 0.1) 100%);
    border-top: 2px solid rgba(249, 185, 15, 0.3);
    padding: 1rem 0;
}

.welcome-content {
    display: flex;
    align-items: center;
}

.welcome-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.welcome-title i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.welcome-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.welcome-date i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .welcome-banner .row {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-content {
        justify-content: center;
    }
    
    .welcome-title {
        justify-content: center;
    }
    
    .welcome-date {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* User Actions Container */
.d-flex.gap-3 {
    gap: 1rem;
}

/* Navigation Icons (Alerts, Wallet, Heart) */
.nav-icon-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem;
    padding: 0.5rem;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.nav-icon-link .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-sm {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
}

/* Wallet Amount */
.nav-icon-link .wallet-amount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 0.25rem;
    white-space: nowrap;
}

/* Profile Picture */
.nav-profile-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-profile-link:hover .profile-pic {
    border-color: white;
    transform: scale(1.1);
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background-color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(24, 69, 139, 0.1);
    color: var(--primary-color);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-toggle .bi-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

/* Booking Search Section */
.booking-search-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.05) 0%, rgba(249, 185, 15, 0.05) 100%);
    padding: 10px 15px;
    min-height: auto;
    width: 100%;
    max-width: 100%;
}

.booking-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 2.5rem;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: left;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
    text-align: left;
}

/* Booking form styles - margin-top commented out as per user request */

/* Search Type Tabs */
.search-type-tabs {
    max-width: 400px;
}

.search-type-tabs .nav-tabs {
    border: 2px solid rgba(24, 69, 139, 0.2);
    border-radius: 8px;
    background: rgba(24, 69, 139, 0.05);
    padding: 0.25rem;
    display: flex;
    gap: 0;
}

.search-type-tabs .nav-item {
    flex: 1;
    margin: 0;
}

.search-type-tabs .nav-item:not(:last-child) {
    margin-right: 0;
}

.search-type-tabs .nav-link {
    border: none;
    border-radius: 6px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
    text-align: center;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 0;
    width: 100%;
}

.search-type-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(24, 69, 139, 0.1);
}

.search-type-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    box-shadow: 0 2px 8px rgba(24, 69, 139, 0.3);
}

/* Search Fields Row */
.search-fields-row {
    margin-top: 1.5rem;
}

/* Field Wrappers for Alignment */
.location-field-wrapper,
.service-field-wrapper,
.search-button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.location-field-wrapper .form-label,
.service-field-wrapper .form-label,
.search-button-wrapper .form-label {
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
    line-height: 1.5;
}

/* Align inputs at the same level - inputs align to bottom */
.search-fields-row .row {
    align-items: flex-end;
}

.search-fields-row .col-lg-5,
.search-fields-row .col-lg-4,
.search-fields-row .col-lg-3 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Ensure inputs align properly - inputs should align at same height */
.location-field-wrapper .input-group,
.service-field-wrapper .input-group {
    margin-bottom: 0;
    margin-top: 0;
}

.search-button-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.search-button-wrapper .btn {
    margin-top: 0;
}

/* Status text positioned below input without affecting alignment */
.location-field-wrapper {
    position: relative;
}

.location-field-wrapper small {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    line-height: 1.4;
}


/* Remove any extra margin from service and search wrappers */
.service-field-wrapper,
.search-button-wrapper {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Ensure all input groups have same height */
.location-field-wrapper .input-group,
.service-field-wrapper .input-group,
.search-button-wrapper .btn {
    height: auto;
    min-height: 50px;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid rgba(24, 69, 139, 0.2);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(24, 69, 139, 0.15);
    outline: none;
}

.booking-form .input-group-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    border: 2px solid var(--primary-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 0.875rem 1rem;
}

.booking-form .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.booking-form .input-group .form-control:focus {
    border-left: 2px solid var(--primary-color);
}

.btn-location {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-location i {
    font-size: 1rem;
    display: inline-block;
}

.btn-location:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 185, 15, 0.3);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 50px;
    box-shadow: 0 4px 12px rgba(24, 69, 139, 0.3);
}

.btn-search:hover {
    background: linear-gradient(135deg, #0f2f5f 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.4);
    color: white;
}

.btn-search:active {
    transform: translateY(0);
}

#locationStatus {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Hero Section (for other pages) */
.hero-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.1) 0%, rgba(249, 185, 15, 0.1) 100%);
    padding: 80px 0;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    padding: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0f2f5f;
    border-color: #0f2f5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
    padding: 3rem 0 !important;
}

@media (max-width: 768px) {
    .features-section {
        padding: 2.5rem 0 !important;
    }
    
    .feature-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 2rem 0 !important;
    }
    
    .feature-card {
        padding: 1rem !important;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 1.5rem !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-text {
    color: var(--text-light);
}

/* Cards Section */
.card-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.card-header-custom i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.card-body-custom {
    background: white;
}

.card-title-custom {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-text-custom {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.card-features li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Login/Register Modal */
#loginModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

#loginModal .modal-header {
    border-bottom: 2px solid var(--bg-light);
    padding: 0;
    position: relative;
}

#loginModal .modal-header .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
}

#loginModal .nav-tabs {
    border-bottom: none;
    width: 100%;
}

#loginModal .nav-tabs .nav-item {
    flex: 1;
}

#loginModal .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: var(--text-light);
    font-weight: 600;
    padding: 1rem;
    text-align: center;
    background-color: transparent;
    transition: all 0.3s ease;
}

#loginModal .nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(24, 69, 139, 0.05);
}

#loginModal .nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--secondary-color);
}

#loginModal .modal-body {
    padding: 2rem;
}

#loginModal .tab-content {
    padding-top: 1rem;
}

#loginModal .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#loginModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

#loginModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(24, 69, 139, 0.25);
}

#loginModal .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loginModal .btn-primary:hover {
    background-color: #0f2f5f;
    border-color: #0f2f5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#loginModal .text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

#loginModal .text-link:hover {
    text-decoration: underline;
}

/* Login Section (for standalone login page) */
.login-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.1) 0%, rgba(249, 185, 15, 0.1) 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(24, 69, 139, 0.25);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Subscribe Section */
.subscribe-wrap {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.subscribe-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.subscribe-wrap .container {
    position: relative;
    z-index: 1;
}

.subscribe-header {
    padding-right: 2rem;
}

.subscribe-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.subscribe-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.subscribe-widget {
    width: 100%;
}

.subscribe-form {
    width: 100%;
}

.subscribe-input-group {
    display: flex;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    background: white;
}

.subscribe-input-group .form-control {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    background: white;
}

.subscribe-input-group .form-control:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.subscribe-input-group .form-control::placeholder {
    color: #999;
}

.subscribe-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e0a800 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subscribe-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #e0a800 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 185, 15, 0.4);
}

.subscribe-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.subscribe-message {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
    transition: all 0.3s ease;
}

.subscribe-message.success {
    color: #28a745;
}

.subscribe-message.error {
    color: #ffc107;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

/* Responsive Subscribe Section */
@media (max-width: 991px) {
    .subscribe-wrap {
        padding: 2.5rem 0;
    }
    
    .subscribe-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .subscribe-title {
        font-size: 1.75rem;
    }
    
    .subscribe-description {
        font-size: 0.95rem;
    }
    
    .subscribe-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .subscribe-input-group .form-control {
        border-radius: 15px 15px 0 0;
        padding: 1rem;
    }
    
    .subscribe-button {
        border-radius: 0 0 15px 15px;
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .subscribe-wrap {
        padding: 2rem 0;
    }
    
    .subscribe-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .subscribe-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .subscribe-input-group .form-control {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .subscribe-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .subscribe-wrap {
        padding: 1.75rem 0;
    }
    
    .subscribe-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }
    
    .subscribe-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .subscribe-input-group .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .subscribe-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Our Partners Section */
.partners-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-carousel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-carousel-wrap {
    position: relative;
    padding: 0 60px;
}

.footer-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.footer-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.footer-carousel-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 15px;
    /* padding: 1.5rem 2rem;
    min-width: 180px;
    height: 120px; */
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partners-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.partners-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.4);
}

.partners-carousel-prev {
    left: 5px;
}

.partners-carousel-next {
    right: 5px;
}

.no-partners-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    font-size: 1rem;
}

/* Responsive Partners Section */
@media (max-width: 991px) {
    .partners-section {
        padding: 2.5rem 0;
    }
    
    .footer-carousel-title {
        font-size: 1.5rem;
    }
    
    .footer-carousel-wrap {
        padding: 0 50px;
    }
    
    .partner-item {
        min-width: 150px;
        height: 100px;
        padding: 1.25rem 1.5rem;
    }
    
    .partner-item img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2rem 0;
    }
    
    .footer-carousel-title {
        font-size: 1.35rem;
    }
    
    .footer-carousel-wrap {
        padding: 0 45px;
    }
    
    .partner-item {
        min-width: 130px;
        height: 90px;
        padding: 1rem 1.25rem;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .partners-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 1.75rem 0;
    }
    
    .footer-carousel-title {
        font-size: 1.15rem;
    }
    
    .footer-carousel-wrap {
        padding: 0 40px;
    }
    
    .partner-item {
        min-width: 120px;
        height: 80px;
        padding: 0.875rem 1rem;
    }
    
    .partner-item img {
        max-height: 50px;
    }
    
    .partners-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-carousel-row {
        gap: 1.5rem;
    }
}

/* Footer Content Section */
.footer-content-section {
    background: #f8f9fa;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(24, 69, 139, 0.1);
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-contacts-widget p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contacts li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contacts li span {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 70px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-contacts li span i {
    font-size: 0.875rem;
}

.footer-contacts li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contacts li a:hover {
    color: var(--primary-color);
}

.footer-social {
    margin-top: 1rem;
}

.footer-social span {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social ul li a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social ul li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Widget Posts */
.widget-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(24, 69, 139, 0.1);
}

.widget-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-posts li.clearfix {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.widget-posts-img {
    flex-shrink: 0;
    display: block;
}

.widget-posts-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.widget-posts-img:hover img {
    transform: scale(1.05);
}

.widget-posts-descr {
    flex: 1;
}

.widget-posts-descr a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.widget-posts-descr a:hover {
    color: var(--primary-color);
}

.widget-posts-date {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
}

/* Footer List */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-list li {
    margin-bottom: 0.6rem;
}

.footer-list li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-list li a::before {
    content: '→';
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.25rem;
}

.footer-list li a:hover::before {
    transform: translateX(3px);
}

/* Down Buttons */
.down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.down-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.down-btn i {
    font-size: 1rem;
}

/* Responsive Footer Content */
@media (max-width: 991px) {
    .footer-content-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-widget h3 {
        font-size: 1.1rem;
    }
    
    .footer-contacts-widget p {
        font-size: 0.85rem;
    }
    
    .footer-contacts li span {
        font-size: 0.8rem;
    }
    
    .footer-contacts li a {
        font-size: 0.8rem;
    }
    
    .footer-list li a {
        font-size: 0.8rem;
    }
    
    .widget-posts-descr a {
        font-size: 0.8rem;
    }
    
    .widget-posts-date {
        font-size: 0.75rem;
    }
    
    .down-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content-section {
        padding: 2rem 0 1.25rem;
    }
    
    .footer-widget {
        margin-bottom: 1.25rem;
    }
    
    .footer-widget h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.4rem;
    }
    
    .footer-contacts-widget p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .footer-contacts li {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-contacts li span {
        min-width: auto;
        font-size: 0.75rem;
    }
    
    .footer-contacts li a {
        font-size: 0.75rem;
    }
    
    .footer-social span {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-social ul li a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .widget-posts li {
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
    }
    
    .widget-posts li.clearfix {
        flex-direction: column;
    }
    
    .widget-posts-img {
        align-self: flex-start;
    }
    
    .widget-posts-descr a {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .widget-posts-date {
        font-size: 0.7rem;
    }
    
    .footer-list li {
        margin-bottom: 0.5rem;
    }
    
    .footer-list li a {
        font-size: 0.75rem;
    }
    
    .down-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .down-btn i {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(249, 185, 15, 0.3);
}

.contact-btn:hover {
    background: #e0a800;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 185, 15, 0.4);
}

.contact-btn i {
    font-size: 1.2rem;
}

.customer-support-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.customer-support-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
}

.customer-support-widget h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.cs-mumber {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cs-mumber:hover {
    color: var(--secondary-color);
}

.cs-mumber-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 185, 15, 0.3);
    white-space: nowrap;
    margin-left: auto;
}

.cs-mumber-button:hover {
    background: #e0a800;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 185, 15, 0.4);
}

.cs-mumber-button i {
    font-size: 1.1rem;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 1.75rem 0;
    }
    
    .customer-support-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .customer-support-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .customer-support-widget h4 {
        font-size: 0.85rem;
    }
    
    .cs-mumber {
        font-size: 0.95rem;
    }
    
    .cs-mumber-button {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
        margin-left: 0;
    }
    
    .contact-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .customer-support-widget {
        gap: 0.875rem;
    }
    
    .customer-support-info {
        gap: 0.4rem;
    }
    
    .customer-support-widget h4 {
        font-size: 0.8rem;
    }
    
    .cs-mumber {
        font-size: 0.9rem;
    }
    
    .cs-mumber-button {
        font-size: 0.8rem;
        padding: 0.65rem 1.15rem;
    }
    
    .contact-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Sub Footer Section */
.sub-footer {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sub-footer .copyright {
    flex: 1;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
}

.sub-footer .copyright br {
    display: block;
    margin: 0.5rem 0;
}

.subfooter-lang {
    position: relative;
}

.subfooter-show-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.subfooter-show-lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

.subfooter-show-lang span {
    font-size: 0.9rem;
}

.subfooter-show-lang i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.subfooter-lang:hover .subfooter-show-lang i {
    transform: rotate(180deg);
}

.subfooter-lang-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0 0 0.5rem 0;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.subfooter-lang:hover .subfooter-lang-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subfooter-lang-tooltip li {
    margin: 0;
}

.subfooter-lang-tooltip li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.subfooter-lang-tooltip li a:hover {
    background: var(--primary-color);
    color: white;
}

.subfooter-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.subfooter-nav ul li {
    margin: 0;
}

.subfooter-nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.subfooter-nav ul li a:hover {
    color: var(--secondary-color);
}

/* Responsive Sub Footer */
@media (max-width: 991px) {
    .sub-footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .sub-footer .copyright {
        min-width: auto;
        width: 100%;
    }
    
    .subfooter-nav ul {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .sub-footer {
        padding: 1.25rem 0;
    }
    
    .sub-footer .copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .subfooter-nav ul {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .subfooter-nav ul li a {
        font-size: 0.8rem;
    }
    
    .subfooter-show-lang {
        padding: 0.4rem 0.875rem;
    }
    
    .subfooter-show-lang span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .sub-footer {
        padding: 1rem 0;
    }
    
    .sub-footer .copyright {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .subfooter-nav ul {
        gap: 0.5rem;
    }
    
    .subfooter-nav ul li a {
        font-size: 0.75rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    margin-top: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(24, 69, 139, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #0f2f5f 0%, var(--primary-color) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.5);
}

.scroll-to-top-btn.show {
    display: flex;
}

.scroll-to-top-btn i {
    display: block;
}

/* Search Results Section */
.search-results-section {
    background-color: var(--bg-light);
    min-height: 400px;
}

/* Services and Providers Section Titles */
.services-section-title,
.providers-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--secondary-color);
}

/* Services Listing Item Styles */
.listing-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-5px);
}

.geodir-category-listing {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.listing-item:hover .geodir-category-listing {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.geodir-category-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.geodir-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-item:hover .geodir-category-img img {
    transform: scale(1.05);
}

.listing-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.geodir-category-opt {
    position: relative;
}

.geodir-category-content {
    padding: 1.5rem;
}

.geodir-category-content-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.geodir-category-content-title h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.geodir-category-content-title h3 a:hover {
    color: var(--secondary-color);
}

.geodir-category-location {
    color: rgba(108, 117, 125, 0.8);
    font-size: 0.85rem;
    margin: 0.4rem 0;
}

.geodir-category-location a {
    color: rgba(108, 117, 125, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
}

.geodir-category-location a:hover {
    color: var(--primary-color);
}

.geodir-category-location h3 {
    font-size: 0.9rem;
    margin: 0.4rem 0;
}

.geodir-category-content p {
    color: rgba(108, 117, 125, 0.75);
    line-height: 1.5;
    margin: 0.75rem 0;
    font-size: 0.85rem;
}

/* Service Book Button */
.service-book-button {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.service-book-button .btn {
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 69, 139, 0.2);
    font-size: 0.875rem;
}

.service-book-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 69, 139, 0.3);
}

.service-book-button .btn:active {
    transform: translateY(0);
}

.rate-class-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.4rem;
}

.rate-class-name .score {
    font-size: 0.8rem;
    color: rgba(108, 117, 125, 0.8);
}

.rate-class-name .score strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
}

.rate-class-name span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Responsive adjustments for services */
@media (max-width: 992px) {
    .services-section-title,
    .providers-section-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }
    
    .geodir-category-img {
        height: 200px;
    }
    
    .geodir-category-content-title h3,
    .geodir-category-content-title h3 a {
        font-size: 1rem;
    }
    
    .geodir-category-location,
    .geodir-category-location a {
        font-size: 0.8rem;
    }
    
    .geodir-category-location h3 {
        font-size: 0.85rem;
    }
    
    .geodir-category-content p {
        font-size: 0.8rem;
    }
    
    .listing-counter {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .rate-class-name .score {
        font-size: 0.75rem;
    }
    
    .rate-class-name .score strong {
        font-size: 0.75rem;
    }
    
    .rate-class-name span {
        font-size: 0.9rem;
    }
    
    .service-book-button .btn {
        font-size: 0.8rem;
        padding: 0.55rem 1.1rem;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 1rem;
    }
    
    .provider-card-location span {
        font-size: 0.8rem;
    }
    
    .provider-card-footer .btn {
        font-size: 0.8rem;
        padding: 0.55rem 1.1rem;
    }
    
    .provider-card-image .badge,
    .geodir-category-img .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem !important;
    }
}

@media (max-width: 768px) {
    .services-section-title,
    .providers-section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
    
    .geodir-category-img {
        height: 180px;
    }
    
    .geodir-category-content {
        padding: 1rem;
    }
    
    .geodir-category-content-title h3,
    .geodir-category-content-title h3 a {
        font-size: 0.95rem;
    }
    
    .geodir-category-location,
    .geodir-category-location a {
        font-size: 0.75rem;
    }
    
    .geodir-category-location h3 {
        font-size: 0.8rem;
    }
    
    .geodir-category-content p {
        font-size: 0.75rem;
    }
    
    .listing-counter {
        font-size: 0.7rem;
        padding: 4px 7px;
    }
    
    .rate-class-name .score {
        font-size: 0.7rem;
    }
    
    .rate-class-name .score strong {
        font-size: 0.7rem;
    }
    
    .rate-class-name span {
        font-size: 0.85rem;
    }
    
    .service-book-button .btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 0.95rem;
    }
    
    .provider-card-location i {
        font-size: 0.85rem;
    }
    
    .provider-card-location span {
        font-size: 0.75rem;
    }
    
    .provider-card-footer .btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .provider-card .text-warning {
        font-size: 0.8rem;
    }
    
    .provider-card .text-warning i {
        font-size: 0.8rem;
    }
    
    .provider-card .text-muted.small {
        font-size: 0.75rem !important;
    }
    
    .provider-card-image .badge,
    .geodir-category-img .badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem !important;
    }
}

@media (max-width: 576px) {
    .services-section-title,
    .providers-section-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
    
    .geodir-category-content {
        padding: 0.875rem;
    }
    
    .geodir-category-content-title h3,
    .geodir-category-content-title h3 a {
        font-size: 0.9rem;
    }
    
    .geodir-category-location,
    .geodir-category-location a {
        font-size: 0.7rem;
    }
    
    .geodir-category-location h3 {
        font-size: 0.75rem;
    }
    
    .geodir-category-content p {
        font-size: 0.7rem;
    }
    
    .listing-counter {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .rate-class-name .score {
        font-size: 0.65rem;
    }
    
    .rate-class-name .score strong {
        font-size: 0.65rem;
    }
    
    .rate-class-name span {
        font-size: 0.8rem;
    }
    
    .service-book-button .btn {
        font-size: 0.7rem;
        padding: 0.45rem 0.9rem;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 0.9rem;
    }
    
    .provider-card-location i {
        font-size: 0.8rem;
    }
    
    .provider-card-location span {
        font-size: 0.7rem;
    }
    
    .provider-card-footer .btn {
        font-size: 0.7rem;
        padding: 0.45rem 0.9rem;
    }
    
    .provider-card .text-warning {
        font-size: 0.75rem;
    }
    
    .provider-card .text-warning i {
        font-size: 0.75rem;
    }
    
    .provider-card .text-muted.small {
        font-size: 0.7rem !important;
    }
    
    .provider-card-image .badge,
    .geodir-category-img .badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem !important;
    }
}

/* Search Loader */
.search-loader {
    padding: 3rem 0;
}

.search-loader .spinner-border {
    border-width: 4px;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* No Services Message */
.no-services-message {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

.no-services-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0034;
    margin-bottom: 0.6rem;
}

.no-services-text {
    font-size: 0.9rem;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.5;
}

.no-services-text strong {
    color: #ff0034;
    font-weight: 600;
}

/* No Providers Message */
.no-providers-message {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.no-providers-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 69, 139, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.no-providers-message > * {
    position: relative;
    z-index: 1;
}

/* Icon Wrapper with Animation */
.no-providers-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.no-providers-icon {
    font-size: 5rem;
    color: rgba(24, 69, 139, 0.4);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.no-providers-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(24, 69, 139, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.no-providers-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0034;
    margin-bottom: 0.6rem;
}

.no-providers-subtitle {
    font-size: 0.9rem;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.5;
}

.no-providers-subtitle strong {
    color: #ff0034;
    font-weight: 400;
}

/* Location Badge */
.no-providers-location-info {
    margin: 2rem 0;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(24, 69, 139, 0.08);
    /* color: var(--primary-color); */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(24, 69, 139, 0.15);
}

.location-badge i {
    font-size: 1.1rem;
}

/* Suggestions Card */
.no-providers-suggestions-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(24, 69, 139, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.suggestions-header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.suggestions-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.suggestions-list {
    margin-top: 1.5rem;
}

.suggestion-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
}

.suggestion-item:last-child {
    margin-bottom: 0;
}

.suggestion-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.1) 0%, rgba(24, 69, 139, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.suggestion-content {
    flex: 1;
}

.suggestion-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.suggestion-content p {
    font-size: 0.95rem;
    color: rgba(108, 117, 125, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Action Button */
.no-providers-actions {
    margin-top: 2rem;
}

.no-providers-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.3);
    transition: all 0.3s ease;
}

.no-providers-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 69, 139, 0.4);
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(248, 215, 218, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(220, 53, 69, 0.15);
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.error-icon {
    font-size: 4rem;
    color: rgba(220, 53, 69, 0.6);
    margin-bottom: 1.5rem;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(220, 53, 69, 0.9);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.1rem;
    color: rgba(108, 117, 125, 0.75);
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .no-providers-message,
    .error-message,
    .no-services-message {
        padding: 1.75rem 1.5rem;
        max-width: 100%;
    }
    
    .no-providers-icon {
        font-size: 3.5rem;
    }
    
    .no-providers-icon-bg {
        width: 90px;
        height: 90px;
    }
    
    .no-providers-title,
    .no-services-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .no-providers-subtitle,
    .no-services-text {
        font-size: 0.85rem;
    }
    
    .no-providers-suggestions-card {
        padding: 1.5rem;
    }
    
    .suggestion-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .suggestion-icon {
        margin: 0 auto 1rem;
    }
    
    .error-icon {
        font-size: 3.5rem;
    }
    
    .error-title {
        font-size: 1.75rem;
    }
    
    .error-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .no-providers-message,
    .error-message,
    .no-services-message {
        padding: 1.5rem 1.25rem;
    }
    
    .no-providers-icon {
        font-size: 3rem;
    }
    
    .no-providers-icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .no-providers-title,
    .no-services-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .no-providers-subtitle,
    .no-services-text {
        font-size: 0.8rem;
    }
    
    .location-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .no-providers-suggestions-card {
        padding: 1.25rem;
    }
    
    .suggestions-header {
        font-size: 1.1rem;
    }
    
    .suggestions-header i {
        font-size: 1.3rem;
    }
    
    .suggestion-item {
        padding: 0.875rem;
    }
    
    .suggestion-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
    
    .suggestion-content h6 {
        font-size: 1rem;
    }
    
    .suggestion-content p {
        font-size: 0.875rem;
    }
    
    .no-providers-actions .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-text {
        font-size: 0.95rem;
    }
}

/* Coming Soon Message Styles */
.coming-soon-message {
    /* background: linear-gradient(135deg, rgba(108, 117, 125, 0.06) 0%, rgba(173, 181, 189, 0.06) 100%); */
    border-radius: 25px;
    /* border: 2px solid rgba(108, 117, 125, 0.2);
    max-width: 700px; */
    margin: 0 auto;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
}

.coming-soon-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(173, 181, 189, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.coming-soon-message > * {
    position: relative;
    z-index: 1;
}

/* Service Unavailable Badge */
.service-unavailable-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(220, 53, 69, 0.1);
    color: rgba(220, 53, 69, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(220, 53, 69, 0.2);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.service-unavailable-badge i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(108, 117, 125, 0.9);
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.coming-soon-subtitle {
    font-size: 0.95rem;
    color: rgba(108, 117, 125, 0.75);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.coming-soon-notify {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 1.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin: 0 auto 1.5rem;
    max-width: 500px;
    border: 2px solid rgba(173, 181, 189, 0.3);
    transition: all 0.3s ease;
}

.coming-soon-notify:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(173, 181, 189, 0.5);
}

.coming-soon-notify p {
    font-size: 0.9rem;
    color: rgba(108, 117, 125, 0.85);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-notify p i {
    color: rgba(24, 69, 139, 0.6);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.coming-soon-notify .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.25);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.85) 0%, rgba(15, 47, 95, 0.85) 100%);
    border: none;
    letter-spacing: 0.2px;
    color: white;
}

.coming-soon-notify .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(24, 69, 139, 0.35);
    background: linear-gradient(135deg, rgba(15, 47, 95, 0.9) 0%, rgba(24, 69, 139, 0.9) 100%);
    color: white;
}

.coming-soon-notify .btn:active {
    transform: translateY(-2px);
}

.coming-soon-note {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(173, 181, 189, 0.3);
    color: rgba(108, 117, 125, 0.7);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-note i {
    color: rgba(24, 69, 139, 0.6);
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Responsive adjustments for coming soon message */
@media (max-width: 768px) {
    .coming-soon-message {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .service-unavailable-badge {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }
    
    .service-unavailable-badge i {
        font-size: 1.1rem;
    }
    
    .coming-soon-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
    }
    
    .coming-soon-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .coming-soon-notify {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .coming-soon-notify p {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }
    
    .coming-soon-notify .btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .coming-soon-note {
        font-size: 0.75rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-message {
        padding: 2.5rem 1.5rem !important;
        border-radius: 18px;
    }
    
    .service-unavailable-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-unavailable-badge i {
        font-size: 1rem;
    }
    
    .coming-soon-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .coming-soon-notify {
        padding: 1.25rem 1rem;
        border-radius: 15px;
    }
    
    .coming-soon-notify p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .coming-soon-notify p i {
        font-size: 1rem;
        margin-right: 0;
    }
    
    .coming-soon-notify .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .coming-soon-note {
        font-size: 0.7rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .coming-soon-note i {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
}

.search-results-section .section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

#resultsCount {
    font-size: 1rem;
    color: var(--text-light);
}

#resultsNumber {
    font-weight: 700;
    color: var(--primary-color);
}

/* Provider Card Styles */
.provider-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary-color);
}

.provider-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.1) 0%, rgba(249, 185, 15, 0.1) 100%);
}

.provider-card-image img {
    transition: transform 0.3s ease;
}

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

.provider-card-image .badge {
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 0.4rem 0.75rem !important;
}

.geodir-category-img .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem !important;
}

.provider-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
    line-height: 1.3;
    margin-bottom: 0.5rem !important;
}

.provider-card-title a {
    transition: color 0.3s ease;
    font-size: 1rem;
}

.provider-card-title a:hover {
    color: var(--secondary-color) !important;
}

.provider-card-location {
    min-height: 30px;
    margin-bottom: 0.5rem !important;
}

.provider-card-location i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.provider-card-location span {
    font-size: 0.8rem;
    line-height: 1.3;
    word-break: break-word;
}

.provider-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.provider-card-footer .btn {
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.provider-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 69, 139, 0.3);
}

/* Rating Stars */
.provider-card .text-warning {
    font-size: 0.75rem;
}

.provider-card .text-warning i {
    margin-right: 2px;
    font-size: 0.75rem;
}

.provider-card .text-muted.small {
    font-size: 0.75rem !important;
}

/* Reduce spacing in provider card body */
.provider-card-body > div {
    margin-bottom: 0.5rem !important;
}

.provider-card-body > div:last-child {
    margin-bottom: 0 !important;
}

/* Responsive adjustments for provider cards */
@media (max-width: 992px) {
    .provider-card-image img {
        height: 200px !important;
    }
    
    .provider-card-body {
        padding: 0.875rem !important;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 0.95rem;
    }
    
    .provider-card-location span {
        font-size: 0.75rem;
    }
    
    .provider-card-footer {
        margin-top: 0.6rem !important;
        padding-top: 0.6rem !important;
    }
}

@media (max-width: 768px) {
    .search-results-section .section-title {
        font-size: 1.5rem;
    }
    
    #resultsCount {
        font-size: 0.9rem;
    }
    
    .provider-card-image img {
        height: 180px !important;
    }
    
    .provider-card-body {
        padding: 0.75rem !important;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 0.9rem;
        margin-bottom: 0.4rem !important;
    }
    
    .provider-card-location {
        margin-bottom: 0.4rem !important;
    }
    
    .provider-card-location span {
        font-size: 0.7rem;
    }
    
    .provider-card-footer {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    .provider-card-footer .btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.875rem;
    }
    
    .provider-card .text-warning {
        font-size: 0.7rem;
    }
    
    .provider-card .text-warning i {
        font-size: 0.7rem;
    }
    
    .provider-card .text-muted.small {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 576px) {
    .provider-card-body {
        padding: 0.65rem !important;
    }
    
    .provider-card-title,
    .provider-card-title a {
        font-size: 0.85rem;
        margin-bottom: 0.35rem !important;
    }
    
    .provider-card-location {
        margin-bottom: 0.35rem !important;
        min-height: 25px;
    }
    
    .provider-card-location span {
        font-size: 0.65rem;
    }
    
    .provider-card-footer {
        margin-top: 0.45rem !important;
        padding-top: 0.45rem !important;
    }
    
    .provider-card-footer .btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .search-results-section .section-title {
        font-size: 1.35rem;
    }
    
    #resultsCount {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-fields-row .col-lg-5,
    .search-fields-row .col-lg-4,
    .search-fields-row .col-lg-3 {
        margin-bottom: 1rem;
    }
    
    .btn-search {
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .booking-search-section {
        padding: 30px 15px;
    }
    
    .booking-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .booking-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .booking-subtitle {
        font-size: 1rem;
        text-align: left;
    }
    
    .search-type-tabs {
        max-width: 100%;
    }
    
    .search-type-tabs .nav-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .location-field-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .search-button-wrapper {
        padding-top: 0;
        margin-top: 0;
    }
    
    .search-button-wrapper .form-label.invisible {
        display: none;
        height: 0;
        margin: 0;
        padding: 0;
    }
    
    .booking-form .input-group-text {
        padding: 0.75rem 0.875rem;
    }
    
    .btn-location {
        padding: 0.75rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .btn-login {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-icon-link {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .profile-pic {
        width: 35px;
        height: 35px;
    }
    
    .navbar-nav .dropdown-menu {
        margin-top: 0.25rem;
    }
    
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.25rem;
    }
    
    .login-banner {
        padding: 1rem 0;
    }
    
    .login-banner-title {
        font-size: 1rem;
    }
    
    .login-banner-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .btn-login-banner {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-banner-note {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .welcome-banner {
        padding: 0.875rem 0;
    }
    
    .welcome-banner .row {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-content {
        justify-content: center;
        width: 100%;
    }
    
    .welcome-title {
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .welcome-date {
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
        margin-top: 0;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.4;
    }
    
    .welcome-banner .col-lg-4,
    .welcome-banner .col-md-5 {
        margin-top: 0.5rem !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .booking-search-section {
        padding: 25px 10px;
    }
    
    .booking-content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .booking-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .booking-subtitle {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .search-type-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .location-field-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .search-button-wrapper {
        padding-top: 0;
        margin-top: 0;
    }
    
    .search-button-wrapper .form-label.invisible {
        display: none;
        height: 0;
        margin: 0;
        padding: 0;
    }
    
    .booking-form .form-label {
        font-size: 0.875rem;
        text-align: left;
    }
    
    .booking-form .form-control,
    .booking-form .form-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .booking-form .input-group-text {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-location {
        padding: 0.75rem 0.875rem;
    }
    
    .btn-search {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    #locationStatus {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Browse by Service Type Section */
.browse-service-types-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.03) 0%, rgba(249, 185, 15, 0.03) 100%);
    position: relative;
    overflow: hidden;
    /* padding: 3rem 0 !important; */
}

.browse-service-types-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--secondary-color);
}

@media (max-width: 992px) {
    .browse-service-types-section .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .browse-service-types-section .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

@media (max-width: 576px) {
    .browse-service-types-section .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

.service-types-carousel-wrapper {
    position: relative;
    /* padding: 0 60px; */
}

.service-types-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
}

.service-types-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.service-types-carousel-container .row {
    flex-wrap: nowrap;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.service-type-item {
    flex: 0 0 auto;
    width: calc(16.666% - 0.75rem); /* col-2 on desktop (6 items visible) */
    margin-right: 0.75rem;
}

@media (max-width: 991px) {
    .service-type-item {
        width: calc(50% - 0.5rem); /* col-6 on mobile (2 items visible) */
        margin-right: 0.5rem;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(24, 69, 139, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #0f2f5f 0%, var(--primary-color) 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(24, 69, 139, 0.5);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav-left {
    left: 5px;
}

.carousel-nav-right {
    right: 5px;
}

.footer-carousel-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 100%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.1) 0%, rgba(249, 185, 15, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.footer-carousel-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.footer-carousel-item:hover::before {
    opacity: 1;
}

.footer-carousel-item a {
    display: block;
    text-decoration: none;
    position: relative;
    height: 100%;
    flex: 1;
    overflow: hidden;
}

.footer-carousel-item img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.footer-carousel-item:hover img {
    transform: scale(1.1);
}

.footer-carousel-item .text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
    color: white;
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-carousel-item:hover .text-overlay {
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
}

.footer-carousel-item .text-overlay h5 {
    color: var(--secondary-color);
    margin: 0;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for service types */
@media (max-width: 992px) {
    .service-types-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-carousel-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-types-carousel-wrapper {
        padding: 0 45px;
    }
    
    .footer-carousel-item {
        border-radius: 15px;
    }
    
    .footer-carousel-item img {
        height: 180px;
        border-radius: 12px;
    }
    
    .footer-carousel-item .text-overlay {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-carousel-item:hover .text-overlay {
        padding: 1.25rem 0.75rem;
    }
    
    .footer-carousel-item .text-overlay h5 {
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 576px) {
    .service-types-carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-nav-left {
        left: 2px;
    }
    
    .carousel-nav-right {
        right: 2px;
    }
    
    .footer-carousel-item img {
        height: 160px;
    }
    
    .footer-carousel-item .text-overlay {
        padding: 0.875rem 0.625rem;
        font-size: 0.85rem;
    }
    
    .footer-carousel-item:hover .text-overlay {
        padding: 1rem 0.625rem;
    }
    
    .footer-carousel-item .text-overlay h5 {
        font-size: 0.75rem;
    }
}

/* No Service Types Available Message */
.no-service-types-message {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

.no-service-types-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0034;
    margin-bottom: 0.6rem;
}

.no-service-types-text {
    font-size: 1rem;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.6;
}

.no-service-types-text strong {
    color: #ff0034;
    font-weight: 600;
}

/* Responsive adjustments for no service types */
@media (max-width: 768px) {
    .no-service-types-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .no-service-types-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
}

/* Trending Destinations Section */
.trending-destinations-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.03) 0%, rgba(249, 185, 15, 0.03) 100%);
    position: relative;
    overflow: hidden;
    /* padding: 3rem 0 !important; */
}

.trending-destinations-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--secondary-color);
}

@media (max-width: 992px) {
    .trending-destinations-section .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .trending-destinations-section .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

@media (max-width: 576px) {
    .trending-destinations-section .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

.trending-destinations-carousel-wrapper {
    position: relative;
    /* padding: 0 60px; */
}

.trending-destinations-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
}

.trending-destinations-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.trending-destinations-carousel-container .row {
    flex-wrap: nowrap;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.trending-destination-item {
    flex: 0 0 auto;
    width: calc(16.666% - 0.75rem); /* col-2 on desktop (6 items visible) */
    margin-right: 0.75rem;
}

@media (max-width: 991px) {
    .trending-destination-item {
        width: calc(50% - 0.5rem); /* col-6 on mobile (2 items visible) */
        margin-right: 0.5rem;
    }
}

/* Box Image Widget Details (for Trending Destinations) */
.box-image-widget-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
    color: white;
    padding: 1.25rem 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-carousel-item:hover .box-image-widget-details {
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
}

.box-image-widget-details h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.box-image-widget-details h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Mobile/Desktop visibility */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 992px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* No Trending Destinations Available Message */
.no-trending-destinations-message {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

.no-trending-destinations-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0034;
    margin-bottom: 0.6rem;
}

.no-trending-destinations-text {
    font-size: 1rem;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.6;
}

.no-trending-destinations-text strong {
    color: #ff0034;
    font-weight: 600;
}

/* Responsive adjustments for no trending destinations */
@media (max-width: 768px) {
    .no-trending-destinations-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .no-trending-destinations-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
}

/* Responsive adjustments for trending destinations */
@media (max-width: 992px) {
    .trending-destinations-carousel-wrapper {
        padding: 0 50px;
    }
    
    .box-image-widget-details {
        padding: 1rem 0.75rem;
    }
    
    .footer-carousel-item:hover .box-image-widget-details {
        padding: 1.25rem 0.75rem;
    }
    
    .box-image-widget-details h2 {
        font-size: 1rem;
    }
    
    .box-image-widget-details h5 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .trending-destinations-carousel-wrapper {
        padding: 0 45px;
    }
    
    .box-image-widget-details {
        padding: 0.875rem 0.625rem;
    }
    
    .footer-carousel-item:hover .box-image-widget-details {
        padding: 1rem 0.625rem;
    }
    
    .box-image-widget-details h2 {
        font-size: 0.95rem;
    }
    
    .box-image-widget-details h5 {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .trending-destinations-carousel-wrapper {
        padding: 0 40px;
    }
    
    .box-image-widget-details {
        padding: 0.75rem 0.5rem;
    }
    
    .footer-carousel-item:hover .box-image-widget-details {
        padding: 0.875rem 0.5rem;
    }
    
    .box-image-widget-details h2 {
        font-size: 0.9rem;
    }
    
    .box-image-widget-details h5 {
        font-size: 0.75rem;
    }
}

/* Explore India Section */
.explore-india-section {
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.03) 0%, rgba(249, 185, 15, 0.03) 100%);
    position: relative;
    overflow: hidden;
    /* padding: 3rem 0 !important; */
}

.explore-india-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--secondary-color);
}

@media (max-width: 992px) {
    .explore-india-section .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .explore-india-section .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

@media (max-width: 576px) {
    .explore-india-section .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }
}

.explore-india-carousel-wrapper {
    position: relative;
    /* padding: 0 60px; */
}

.explore-india-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
}

.explore-india-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.explore-india-carousel-container .row {
    flex-wrap: nowrap;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.explore-india-item {
    flex: 0 0 auto;
    width: calc(25% - 0.75rem); /* col-3 on desktop (4 items visible) */
    margin-right: 0.75rem;
}

@media (max-width: 991px) {
    .explore-india-item {
        width: calc(50% - 0.5rem); /* col-6 on mobile (2 items visible) */
        margin-right: 0.5rem;
    }
}

/* No Explore India Available Message */
.no-explore-india-message {
    background: rgba(108, 117, 125, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(108, 117, 125, 0.2);
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

.no-explore-india-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0034;
    margin-bottom: 0.6rem;
}

.no-explore-india-text {
    font-size: 1rem;
    color: rgba(108, 117, 125, 0.8);
    line-height: 1.6;
}

.no-explore-india-text strong {
    color: #ff0034;
    font-weight: 600;
}

/* Responsive adjustments for no explore India */
@media (max-width: 768px) {
    .no-explore-india-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .no-explore-india-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
}

/* Responsive adjustments for explore India */
@media (max-width: 992px) {
    .explore-india-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .explore-india-carousel-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 576px) {
    .explore-india-carousel-wrapper {
        padding: 0 40px;
    }
}

/* Service Provider Profile Page Styles */
.provider-hero-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    min-height: auto;
}

/* Gallery Background */
.provider-gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    min-height: 200px;
}

.provider-gallery-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.provider-gallery-track {
    display: flex;
    gap: 0;
    height: 100%;
    min-height: 200px;
    animation: scroll-gallery 30s linear infinite;
    will-change: transform;
}

.provider-gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-bg-item {
    flex: 0 0 auto;
    height: 100%;
    width: auto;
    position: relative;
    overflow: hidden;
}

.gallery-bg-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

/* Hero Header Overlay */
.provider-hero-header-overlay {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(24, 69, 139, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
}

.provider-hero-header-overlay .container {
    width: 100%;
}

.provider-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.provider-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    /* text-align: center; */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.provider-hero-subtitle i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

/* Connect Me Information (Right Aligned) */
/* Connect Me Information (Right Position, Left Aligned Content) */
.provider-connect-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    margin-right: 0;
    width: 100%;
}

/* Ensure Connect Me column aligns to right edge on desktop */
@media (min-width: 992px) {
    .provider-hero-header-overlay .row > .col-lg-6:last-child {
        padding-right: 0;
    }
}

.connect-info-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0;
    transition: all 0.3s ease;
    justify-content: flex-end;
}

.connect-info-item:hover {
    transform: translateX(-3px);
}

.connect-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    text-align: left;
    width: 100%;
    align-items: flex-start;
}

.connect-label {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.connect-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    word-break: break-word;
    text-align: left;
}

.connect-link:hover {
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.connect-social {
    margin-top: 0.25rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px) scale(1.05);
}

/* Service Provider Profile Section */
.service-provider-profile-section {
    padding: 1.5rem 0;
    background: #f8f9fa;
}

/* Connect Me Widget */
.box-widget-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.box-widget-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.box-widget {
    padding: 0;
}

.box-widget-content {
    padding: 2rem;
}

.box-widget-item-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.box-widget-item-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
}

.box-widget-item-header h3 i {
    color: var(--secondary-color);
}

.box-widget-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-widget-list ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.box-widget-list ul li:last-child {
    border-bottom: none;
}

.box-widget-list ul li:hover {
    padding-left: 0.5rem;
}

.box-widget-list ul li span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
    flex-shrink: 0;
}

.box-widget-list ul li span i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.box-widget-list ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.box-widget-list ul li a:hover {
    color: var(--primary-color);
}

.list-widget-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.list-widget-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.list-widget-social ul li {
    margin: 0;
    padding: 0;
    border: none;
}

.list-widget-social ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2f5f 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 69, 139, 0.3);
}

.list-widget-social ul li a:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e0a800 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 185, 15, 0.4);
    color: var(--primary-color);
}

/* About Section */
/* About Section (No Card Style) */
.about-section {
    padding: 0;
    margin: 0;
}

.about-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.about-content {
    line-height: 1.6;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .provider-gallery-background,
    .provider-gallery-container,
    .provider-gallery-track {
        min-height: 180px;
    }
    
    .provider-hero-header-overlay {
        padding: 1.75rem 0;
        min-height: 180px;
    }
    
    .provider-hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .provider-hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .provider-connect-info {
        gap: 0.45rem;
        align-items: flex-end;
        margin-right: 0;
    }
    
    .connect-info-item {
        justify-content: flex-end;
    }
    
    .connect-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .connect-label {
        text-align: left;
        font-size: 0.6rem;
    }
    
    .connect-link {
        text-align: left;
        font-size: 0.75rem;
    }
    
    .connect-social {
        justify-content: flex-start;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    
    .about-title {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    
    .about-content p {
        font-size: 0.75rem;
        margin-bottom: 0.65rem;
    }
}

@media (max-width: 768px) {
    .provider-gallery-background,
    .provider-gallery-container,
    .provider-gallery-track {
        min-height: 160px;
    }
    
    .provider-hero-header-overlay {
        padding: 1.5rem 0;
        min-height: 160px;
    }
    
    .provider-hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .provider-hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .provider-connect-info {
        gap: 0.4rem;
        align-items: center;
        text-align: center;
        margin-top: 1.5rem;
        margin-right: 0;
    }
    
    .connect-info-item {
        justify-content: center;
    }
    
    .connect-content {
        text-align: center;
    }
    
    .connect-label {
        font-size: 0.6rem;
        text-align: center;
    }
    
    .connect-link {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .connect-social {
        justify-content: center;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .service-provider-profile-section {
        padding: 1.25rem 0;
    }
    
    .about-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .about-content p {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .box-widget-content {
        padding: 1.5rem;
    }
    
    .box-widget-item-header h3 {
        font-size: 1.35rem;
    }
    
    .box-widget-list ul li {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .box-widget-list ul li span {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .provider-gallery-background,
    .provider-gallery-container,
    .provider-gallery-track {
        min-height: 140px;
    }
    
    .provider-hero-header-overlay {
        padding: 1.25rem 0;
        min-height: 140px;
    }
    
    .provider-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
        text-align: center;
    }
    
    .provider-hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .provider-connect-info {
        gap: 0.4rem;
        align-items: center;
        text-align: center;
        margin-right: 0;
    }
    
    .connect-info-item {
        justify-content: center;
    }
    
    .connect-content {
        text-align: center;
    }
    
    .connect-label {
        font-size: 0.55rem;
        text-align: center;
    }
    
    .connect-link {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .connect-social {
        justify-content: center;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .box-widget-content {
        padding: 1.25rem;
    }
    
    .box-widget-item-header h3 {
        font-size: 1.25rem;
    }
    
    .about-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .about-content p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
}

