/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E91E63 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #E91E63;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #E91E63;
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, #E91E63, #F06292) !important;
    border: none !important;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.btn-lg {
    padding: 15px 50px !important;
    font-size: 1.1rem !important;
}

/* ===== Country Selector ===== */
.country-selector {
    position: relative;
    margin-left: 15px;
}

.country-btn {
    background: white;
    border: 2px solid #E91E63;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.country-btn:hover {
    background: #fff5f8;
    transform: scale(1.05);
}

.country-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 10px;
    min-width: 280px;
    z-index: 9999;
    display: none;
    max-height: 450px;
    overflow-y: auto;
}

.country-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.country-item {
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.country-item:hover {
    background: #f8f9fa;
}

.country-item.active {
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: white;
}

.country-flag {
    font-size: 1.8rem;
}

.country-info {
    flex: 1;
}

.country-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.country-currency {
    font-size: 0.8rem;
    color: #999;
}

.country-item.active .country-currency {
    color: rgba(255,255,255,0.9);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #E91E63, #F06292);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.search-box {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px;
}

.search-box button {
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== Intro Section ===== */
.intro-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.intro-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 30px 0;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-icon {
        font-size: 1.5rem;
    }
}

/* ===== Sections ===== */
.categories-section,
.services-section {
    padding: 80px 0;
}

.services-section-alt {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-section-alt {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-spacing {
    padding: 40px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #E91E63, #F06292);
    border-radius: 2px;
}

/* ===== Categories ===== */
.category-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #E91E63, #F06292);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.25);
    text-decoration: none;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 3.5rem;
    color: #E91E63;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* ===== Services ===== */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.25);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.service-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    align-self: flex-start;
}

.service-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-category i {
    color: #E91E63;
    margin-left: 5px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 56px;
}

.service-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.service-title a:hover {
    color: #E91E63;
}

.service-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-meta i {
    color: #E91E63;
    width: 16px;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #E91E63;
    margin: 15px 0;
}

.service-rating {
    color: #FFD700;
    font-size: 0.95rem;
    margin-top: auto;
}

.service-rating i {
    margin-left: 3px;
}

.service-view-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.service-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.service-view-btn i {
    margin-left: 5px;
}

/* ===== Countries Slider ===== */
.countries-slider-section {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.countries-slider-section::before,
.countries-slider-section::after {
    display: none;
}


.countries-slider-section .section-title {
    color: #333;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.countries-slider-section .section-title::after {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.countries-slider-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.countries-swiper {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.country-slide {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    display: block;
    color: inherit;
}

.country-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E91E63, #F06292);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.country-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
}

.country-slide:hover::before {
    transform: scaleX(1);
}

.country-slide.active {
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

.country-slide.active::before {
    transform: scaleX(1);
    background: white;
}

.country-slide-flag {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s;
}

.country-slide:hover .country-slide-flag {
    transform: scale(1.15) rotate(5deg);
}

.country-slide.active .country-slide-flag {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.country-slide-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.country-slide.active .country-slide-name {
    color: white;
}

.country-slide-vendors {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.country-slide.active .country-slide-vendors {
    color: rgba(255,255,255,0.95);
}

.country-slide-vendors i {
    margin-left: 5px;
}

.country-slide-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: linear-gradient(135deg, #E91E63, #F06292);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 700;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: #E91E63 !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #E91E63 !important;
    transform: scale(1.2);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: white;
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-grid-item {
    width: 100%;
}

.cta-section .row {
    display: flex;
    flex-wrap: wrap;
}

.cta-section .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .cta-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.cta-box {
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    color: white;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    height: 100%;
    width: 100%;
}

.cta-box:hover {
    transform: translateY(-10px);
}

.cta-groom {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cta-vendor {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cta-box-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box-text {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-btn {
    padding: 15px 45px !important;
    border-radius: 50px;
    font-size: 1rem !important;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-groom .cta-btn {
    color: #667eea;
}

.cta-vendor .cta-btn {
    color: #E91E63;
}

/* ===== Stats Cards ===== */
.stats-section-alt {
    padding: 80px 0;
    background: linear-gradient(135deg, #E91E63, #F06292);
    position: relative;
    overflow: hidden;
}

.stats-section-alt::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.stats-section-alt::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -80px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}


/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stats-grid-item {
    width: 100%;
}

.stats-section-alt .row {
    display: flex;
    flex-wrap: wrap;
}

.stats-section-alt .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .stats-section-alt .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
    height: 100%;
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-pink .stat-number {
    color: #E91E63;
}

.stat-purple .stat-number {
    color: #667eea;
}

.stat-green .stat-number {
    color: #28a745;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* ===== Alerts ===== */
.alert {
    border: none;
    border-radius: 15px;
    padding: 40px;
}

.alert i {
    margin-left: 8px;
}

.alert.alert-info {
    color: #17a2b8;
}

.alert.alert-warning {
    color: #ffc107;
}

.empty-state {
    padding: 60px !important;
}

.empty-state-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.empty-state i {
    color: #ffc107;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 80px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col {
    width: 100%;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.snapchat:hover { background: #FFFC00; color: #000; }
.social-link.tiktok:hover { background: #000; border: 2px solid #00f2ea; }
.social-link.whatsapp:hover { background: #25D366; }
.social-link.youtube:hover { background: #ff0000; }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #E91E63;
    padding-right: 5px;
}

.footer-links a i {
    margin-left: 8px;
    color: #E91E63;
    width: 16px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #E91E63;
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #E91E63;
}

/* App Download Section in Footer */
.app-download-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.app-section-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.app-buttons-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2a2a2a;
    padding: 12px 18px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-button:hover {
    background: #333;
    border-color: #E91E63;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.app-button i {
    font-size: 2rem;
    flex-shrink: 0;
}

.app-button.apple i {
    color: #fff;
}

.app-button.google i {
    color: #3bccff;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.app-button-text small {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
}

.app-button-text strong {
    font-size: 1rem;
    font-weight: 700;
}

/* Footer Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0 30px;
    opacity: 0.5;
}

/* Footer Bottom - Three Sections Layout */
.footer-bottom-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-right,
.footer-center,
.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-center {
    flex: 0 0 auto;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-copyright {
    color: #999;
}

.footer-separator {
    color: #666;
    font-weight: bold;
}

.footer-bottom-single a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-bottom-single a:hover {
    color: #E91E63;
}

.footer-developer-inline {
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-developer-inline i {
    color: #E91E63;
}

.footer-developer-inline a {
    color: #E91E63;
    font-weight: 600;
}

.footer-developer-inline a:hover {
    color: #F06292;
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-bottom-single {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-right,
    .footer-center,
    .footer-left {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box button {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .country-dropdown {
        left: auto;
        right: 0;
    }
    
    .country-slide {
        padding: 18px 12px;
    }
    
    .country-slide-flag {
        font-size: 2.5rem;
    }
    
    .country-slide-name {
        font-size: 0.95rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .alert {
        padding: 30px !important;
    }
    
    .empty-state {
        padding: 40px !important;
    }
    
    .empty-state-text {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-bottom-single {
        font-size: 0.85rem;
        gap: 10px;
        padding: 15px 0;
    }
    
    .footer-developer-inline,
    .footer-bottom-single a,
    .footer-copyright {
        white-space: normal;
    }
    
    .app-download-section {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .app-buttons-footer {
        gap: 10px;
    }
    
    .app-button {
        padding: 10px 15px;
    }
    
    .app-button i {
        font-size: 1.8rem;
    }
    
    .app-button-text small {
        font-size: 0.65rem;
    }
    
    .app-button-text strong {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .categories-section,
    .services-section,
    .cta-section {
        padding: 50px 0;
    }
}

/* ===== Utilities ===== */
.text-muted {
    color: #6c757d !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }

.g-3 { gap: 1rem !important; }
.g-4 { gap: 1.5rem !important; }


/* ===== Nearby Vendors Section ===== */
.nearby-vendors-section {
    padding: 80px 0;
    background: white;
}

.nearby-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.vendors-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2;
    max-width: 400px;
    width: 90%;
}

.location-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.location-message h4 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-message p {
    color: #666;
    margin-bottom: 25px;
}

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E91E63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-loading p {
    color: #666;
    font-weight: 600;
}

.nearby-vendors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .nearby-vendors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .nearby-vendors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nearby-vendor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.nearby-vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233,30,99,0.2);
}

.nearby-vendor-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.nearby-vendor-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #E91E63, #F06292);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.nearby-vendor-body {
    padding: 20px;
}

.nearby-vendor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.nearby-vendor-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nearby-vendor-location i {
    color: #E91E63;
}

.nearby-vendor-distance {
    color: #E91E63;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.nearby-vendor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .nearby-vendors-section {
        padding: 60px 0;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .location-message {
        padding: 30px 20px;
    }
    
    .location-icon {
        font-size: 3rem;
    }
}