:root {
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --accent-color: #FF4081;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    z-index: 1001;
    margin-top: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-call:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-list {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-list:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.timer {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 15px;
    margin-left: 10px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #fff5f8;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.highlight {
    color: var(--primary-color);
}

.search-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-tab {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--light-text);
    position: relative;
}

.search-tab.active {
    color: var(--primary-color);
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.search-inputs {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 12px 15px;
    border-radius: 8px;
}

.input-group.full-width {
    width: 100%;
}

.input-group i {
    color: var(--primary-color);
    margin-right: 10px;
}

.input-field {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: var(--transition);
}

.btn-search:hover {
    background-color: var(--accent-color);
}

.popular-searches {
    margin-top: 20px;
    font-size: 14px;
    color: var(--light-text);
}

.popular-searches a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--light-text);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #ffebee;
    padding: 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-img-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-container img {
    max-height: 100%;
}

/* Featured Vendors */
.featured-vendors {
    padding: 80px 0;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vendor-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.vendor-card:hover {
    transform: translateY(-5px);
}

.vendor-img {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.vendor-info {
    padding: 20px;
}

.vendor-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.vendor-name {
    font-size: 20px;
    margin: 5px 0;
    color: #2c3e50;
}

.vendor-location {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.vendor-rating {
    color: #f1c40f;
    font-weight: bold;
    margin-bottom: 10px;
}

.vendor-price {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vendor-actions {
    display: flex;
    gap: 10px;
}

.btn-view, .btn-contact {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-view {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-view:hover {
    background-color: var(--accent-color);
}

.btn-contact {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #fdf2f8;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 180px;
    background-color: #fdf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.blog-info {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: var(--light-text);
}

.blog-title {
    font-size: 18px;
    margin: 10px 0;
    color: #2c3e50;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--light-text);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 5px;
}

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

.breadcrumb span {
    color: var(--text-color);
}

/* Vendor Detail Page */
.vendor-detail-section {
    padding: 40px 0;
    background-color: var(--white);
}

.vendor-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vendor-detail-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.vendor-detail-header {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #fff5f8;
    align-items: flex-start;
}

.vendor-detail-image {
    flex: 0 0 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.vendor-detail-info {
    flex: 1;
}

.vendor-detail-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vendor-detail-name {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.vendor-detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.vendor-detail-rating .stars {
    color: #f1c40f;
}

.vendor-detail-rating .rating-value {
    font-weight: bold;
    color: var(--text-color);
}

.vendor-detail-rating .reviews {
    color: var(--light-text);
}

.vendor-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 16px;
}

.vendor-detail-location i {
    color: var(--primary-color);
}

.vendor-detail-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vendor-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-book, .btn-share, .btn-contact-detail {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-book:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-share {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-share:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-contact-detail {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-contact-detail:hover {
    background-color: #7b1fa2;
    transform: translateY(-2px);
}

.vendor-detail-body {
    padding: 40px;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.detail-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-item {
    padding: 12px 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item i {
    color: var(--primary-color);
    font-weight: bold;
}

.why-choose {
    list-style: none;
    padding: 0;
}

.why-choose li {
    padding: 12px 0;
    color: var(--light-text);
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.why-choose li:last-child {
    border-bottom: none;
}

.why-choose strong {
    color: var(--primary-color);
}

.contact-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.similar-vendors-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Vendors Page */
.vendors-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.vendors-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.vendors-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.filters-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.filters-container {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.filter-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover, .filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-reset {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-reset:hover {
    background-color: var(--accent-color);
}

.vendor-count {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.vendors-section {
    padding: 40px 0;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .vendor-detail-header {
        flex-direction: column;
        gap: 20px;
    }

    .vendor-detail-image {
        flex: 0 0 200px;
        height: 200px;
        font-size: 80px;
    }

    .vendor-detail-name {
        font-size: 28px;
    }

    .vendor-detail-actions {
        flex-direction: column;
    }

    .btn-book, .btn-share, .btn-contact-detail {
        width: 100%;
        justify-content: center;
    }

    .detail-section h2 {
        font-size: 20px;
    }

    .hero h1 { font-size: 36px; }
    .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .vendors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vendor-detail-header {
        padding: 20px;
    }

    .vendor-detail-body {
        padding: 20px;
    }

    .vendor-detail-image {
        flex: 0 0 150px;
        height: 150px;
        font-size: 60px;
    }

    .vendor-detail-name {
        font-size: 24px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-menu.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background-color: var(--white); padding: 20px; box-shadow: var(--shadow); }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-image { display: none; }
    .search-inputs { flex-direction: column; }
    .input-group { width: 100%; }
    .btn-search { width: 100%; }
    .filters-container { flex-direction: column; }
    .filter-group { width: 100%; }
    .btn-reset { width: 100%; }
}

@media (max-width: 480px) {
    .services-grid, .blog-grid, .vendors-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .section-title { font-size: 24px; }
    .stats-grid { grid-template-columns: 1fr; }
    .nav-buttons { flex-direction: column; width: 100%; }
    .btn-call, .btn-list { width: 100%; }
}
