/* ====== GOOGLE FONT & BASE ====== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #484848;
}

/* ====== HOMEPAGE - HEADER & BRAND ====== */
.brand-name {
    color: #e0301b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ====== HERO SECTION (Search + Image Box) ====== */
.new-hero-section {
    background: #ffffff;
    padding: 40px 20px;
}

/* Search Box - Red Border */
.new-hero-section .search-box {
    background-color: #ffffff;
    border: 2px solid #e0301b;
    border-radius: 12px;
    color: #6c757d !important;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
}
.new-hero-section .search-box i {
    color: #e0301b;
}
.new-hero-section .search-box:hover {
    border-color: #c62817;
    box-shadow: 0 0 0 4px rgba(224, 48, 27, 0.1);
    background-color: #fefefe;
}

/* Image Box - Profile Card Style Border */
.hero-image-box {
    padding: 10px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to bottom right, #e74c3c, #3498db);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}
.hero-image-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}
.hero-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ====== CATEGORY CARDS (Colorful Border - अब Profile Card जैसी) ====== */
.category-card {
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to bottom right, #e74c3c, #3498db) !important;
    background-origin: padding-box, border-box !important;
    background-clip: padding-box, border-box !important;
    border-radius: 16px !important;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12) !important;
}
.category-card .card-img-top {
    background-color: #f8f9fa !important;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 20px 0;
}
.category-card:hover .card-img-top {
    background-color: #fff0ee !important;
}
.category-card .card-body {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
}
.category-card .card-img-top i {
    transition: all 0.3s ease;
}
.category-card:hover .card-img-top i {
    transform: scale(1.1);
    color: #e0301b !important;
}

/* ====== CITY BUTTONS (Red Outline) ====== */
.btn-outline-danger {
    border-color: #e0301b;
    color: #e0301b;
    transition: all 0.3s ease;
}
.btn-outline-danger:hover {
    background-color: #e0301b;
    border-color: #e0301b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 48, 27, 0.3);
}

/* ====== FOOTER ====== */
footer {
    border-top: 3px solid #e0301b;
}
footer .text-warning {
    color: #f1c40f !important;
}

/* ===================================================== */
/* ====== CITY PAGES - PROFILE CARDS (यह आपकी पुरानी स्टाइल) ====== */
/* ===================================================== */

.profile-list {
    max-width: 750px;
    margin: 30px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-horizontal {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    gap: 18px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to bottom right, #e74c3c, #3498db);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}
.profile-horizontal:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.profile-horizontal-img {
    flex: 0 0 140px;
    height: 170px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.profile-horizontal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile-horizontal-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #e74c3c;
}
.profile-horizontal-details .description {
    font-size: 12px;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    background: #f8f9fa;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e9ecef;
}
.profile-horizontal-details .rating {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 4px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.profile-horizontal-details .rating .age {
    font-size: 13px;
    font-weight: 500;
    color: #636e72;
    margin-left: 2px;
}
.profile-horizontal-details .location {
    font-size: 13px;
    font-weight: 500;
    color: #7f8c8d;
    margin-bottom: 4px;
}
.profile-horizontal-details .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}
.profile-horizontal-details .price span {
    font-size: 14px;
    font-weight: 400;
    color: #7f8c8d;
}

.btn-group-horizontal {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-group-horizontal .btn-call {
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    background: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}
.btn-group-horizontal .btn-call:hover {
    background: #218838;
    transform: scale(1.05);
}
.btn-group-horizontal .btn-whatsapp {
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    background: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.btn-group-horizontal .btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* VIP / PREMIUM BADGE */
.vip-badge {
    position: absolute;
    top: -6px;
    right: 15px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #1a252f;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    z-index: 20;
    border: 2px solid #ffffff;
}
.premium-badge {
    position: absolute;
    top: -6px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 20;
    border: 2px solid #ffffff;
}

/* ====== RESPONSIVE (Mobile) ====== */
@media (max-width: 768px) {
    .new-hero-section {
        padding: 25px 10px;
    }
    .hero-image-box {
        padding: 6px;
    }
    .category-card .card-img-top {
        height: 120px !important;
        padding: 15px 0;
    }
    .category-card .card-title {
        font-size: 0.95rem;
    }
    .category-card .card-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 650px) {
    .profile-list {
        padding: 0 10px;
        gap: 20px;
    }
    .profile-horizontal {
        flex-direction: row;
        padding: 12px;
        gap: 12px;
        align-items: center;
    }
    .profile-horizontal-img {
        flex: 0 0 100px;
        height: 130px;
    }
    .profile-horizontal-details h3 {
        font-size: 17px;
    }
    .profile-horizontal-details .rating .age {
        font-size: 12px;
    }
    .profile-horizontal-details .location {
        font-size: 12px;
    }
    .profile-horizontal-details .rating {
        font-size: 12px;
    }
    .profile-horizontal-details .description {
        font-size: 10px;
        padding: 2px 8px;
    }
    .profile-horizontal-details .price {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .btn-group-horizontal .btn-call,
    .btn-group-horizontal .btn-whatsapp {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .vip-badge, .premium-badge {
        font-size: 10px;
        padding: 3px 12px;
        top: -4px;
        right: 10px;
        border-width: 1.5px;
    }
}
/* ====== TELEGRAM BUTTON (नया गोल बटन) ====== */
.btn-group-horizontal .btn-telegram {
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    background: #0088cc; /* Telegram का ब्रांड कलर (नीला) */
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
    text-decoration: none; /* Link के नीचे की रेखा हटाएं */
}
.btn-group-horizontal .btn-telegram:hover {
    background: #006699;
    transform: scale(1.05);
    text-decoration: none;
}

/* ====== मोबाइल पर साइज छोटा ====== */
@media (max-width: 650px) {
    .btn-group-horizontal .btn-telegram {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
/* ================================================================ */
/* ====== 🔥 नया PROFESSIONAL FOOTER CSS ====== */
/* ================================================================ */

.main-footer {
    background: #1a0b0e; /* बहुत गहरा (Premium Black) */
    color: #d1d5db;
    padding: 60px 0 0 0;
    margin-top: 50px;
    border-top: 4px solid #e0301b;
    font-family: 'Poppins', sans-serif;
}

/* Footer की Headings (सुनहरे के करीब) */
.footer-heading {
    color: #f1c40f;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #e0301b;
    border-radius: 2px;
}

/* Column 1: About Text */
.footer-about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 15px;
}
.footer-badge {
    display: inline-block;
    background: rgba(224, 48, 27, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #f1c40f;
    border: 1px solid rgba(224, 48, 27, 0.2);
}

/* Column 2: Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    position: relative;
    padding-left: 0;
}
.footer-links a:hover {
    color: #f1c40f;
    padding-left: 8px;
}
.footer-links a::before {
    content: '›';
    margin-right: 6px;
    color: #e0301b;
    font-weight: 700;
}

/* Column 3: Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #9ca3af;
}
.footer-contact li i {
    width: 18px;
    color: #e0301b;
    font-size: 16px;
}

/* Column 4: Social Media Icons */
.footer-social-text {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 15px;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #1f2937;
    border-radius: 50%;
    color: #d1d5db;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
    border: 1px solid #374151;
}
.social-icon:hover {
    background: #e0301b;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(224, 48, 27, 0.3);
    border-color: #e0301b;
}

/* Download App Badges */
.badge-app {
    display: inline-block;
    background: #1f2937;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: #d1d5db;
    margin-right: 8px;
    border: 1px solid #374151;
    transition: 0.3s ease;
    cursor: default;
}
.badge-app i {
    margin-right: 6px;
    color: #f1c40f;
}
.badge-app:hover {
    background: #2d3a4f;
}

/* Footer Bottom Bar (Copyright) */
.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}
.footer-bottom strong {
    color: #f1c40f;
}

/* ====== RESPONSIVE (Mobile) ====== */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0 0;
    }
    .footer-heading {
        font-size: 18px;
        margin-top: 15px;
    }
    .footer-heading::after {
        width: 30px;
    }
    .footer-social-icons {
        justify-content: flex-start;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}
/* ====== "NEW" BADGE (हरा-नीला) ====== */
.new-badge {
    position: absolute;
    top: -6px;
    right: 15px;
    background: linear-gradient(135deg, #00b894, #00cec9); /* फ्रेश हरा-नीला (Fresh Green-Cyan) */
    color: #ffffff;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
    z-index: 20;
    border: 2px solid #ffffff;
}
/* ================================================================ */
/* ====== GALLERY SECTION (Height 350px) ====== */
/* ================================================================ */

.full-gallery-section {
    background: #f8f9fa;
    padding: 20px 0 30px 0;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}
.full-gallery-section:hover {
    opacity: 0.95;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #0d0d0d;
}

/* 🔥 Height 350px (आपके हिसाब से) */
.gallery-slider-main {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

/* सभी तस्वीरें */
.gallery-slider-main .gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Active Image */
.gallery-slider-main .gallery-slide.active {
    opacity: 1;
}

/* Dots */
.gallery-dots-main {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.gallery-dots-main .dot-main {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-dots-main .dot-main.active {
    background: #ffffff;
    width: 28px;
    border-radius: 6px;
}

/* ====== RESPONSIVE (Mobile) ====== */
@media (max-width: 768px) {
    .full-gallery-section {
        padding: 10px 0 15px 0;
    }
    .gallery-slider-main {
        height: 250px;
    }
    .gallery-dots-main .dot-main {
        width: 8px;
        height: 8px;
    }
    .gallery-dots-main .dot-main.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-main {
        height: 180px;
    }
}