/* assets/css/style.css - HOI Business - Exact PDF Design */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --accent-color: #f9ab00;
    --danger-color: #d93025;
    --success-color: #188038;
    --dark-color: #202124;
    --gray-color: #5f6368;
    --light-gray: #f8f9fa;
    --border-color: #dadce0;
    --white: #ffffff;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    --box-shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    line-height: 1.5;
    color: var(--dark-color);
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 24px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.currency-select, .language-select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Venue Selector */
.venue-selector-wrapper {
    position: relative;
    flex: 1;
    max-width: 320px;
}

.selected-venue-display {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 10px 16px;
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.selected-venue-display i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
}

.venue-info {
    flex: 1;
}

.venue-label {
    font-size: 11px;
    color: var(--gray-color);
    display: block;
}

.venue-name {
    font-weight: 500;
    display: block;
    font-size: 14px;
}

.venue-city {
    font-size: 12px;
    color: var(--gray-color);
}

.venue-selector-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 100;
    max-height: 400px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.venue-selector-dropdown.show {
    display: block;
}

.venue-search {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.venue-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.venue-list {
    max-height: 340px;
    overflow-y: auto;
}

.venue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}

.venue-item:hover {
    background: var(--primary-light);
}

.venue-item.selected {
    background: var(--primary-light);
    border-left: 3px solid var(--primary-color);
}

.venue-item-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.venue-item-info p {
    font-size: 12px;
    color: var(--gray-color);
}

.featured-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.cart-btn {
    position: relative;
    color: var(--dark-color);
    font-size: 22px;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    color: var(--white);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Hero Section */
.hero-section-new {
    padding: 48px 0;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 32px;
}

.hero-text-center h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-color);
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-search-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.search-other-text {
    display: inline-block;
    background: var(--white);
    padding: 12px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: var(--box-shadow-hover);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 24px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 500;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Section Headers */
.section-header-left {
    text-align: left;
    margin-bottom: 32px;
}

.section-header-left h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.section-header-left p {
    color: var(--gray-color);
    font-size: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-color);
    font-size: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 24px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.service-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-description {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-duration {
    color: var(--gray-color);
}

.service-price {
    font-weight: 500;
}

.service-price span {
    color: var(--gray-color);
    font-size: 12px;
    font-weight: 400;
}

/* Venue Cards */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.venue-card-item {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.venue-card-item:hover {
    box-shadow: var(--box-shadow-hover);
}

.venue-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: var(--box-shadow);
}

.rating-badge i {
    color: var(--accent-color);
    margin-right: 4px;
}

.venue-details {
    padding: 20px;
}

.venue-details h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.venue-location {
    color: var(--gray-color);
    font-size: 13px;
    margin-bottom: 12px;
}

.venue-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-color);
}

.venue-stats i {
    margin-right: 6px;
    color: var(--primary-color);
}

.venue-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.venue-price small {
    font-size: 13px;
    color: var(--gray-color);
    font-weight: 400;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: #9aa0a6;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9aa0a6;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9aa0a6;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-list i {
    color: var(--accent-color);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: #9aa0a6;
    font-size: 13px;
}

/* WhatsApp */
.whatsapp-chat {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #25d366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 999;
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.chatbot-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.chatbot-body {
    height: 400px;
}

.chatbot-body.collapsed {
    display: none;
}

.chatbot-messages {
    height: 340px;
    overflow-y: auto;
    padding: 16px;
    background: var(--light-gray);
}

.message {
    margin-bottom: 16px;
    display: flex;
}

.message.bot .message-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px 18px 18px 4px;
    padding: 10px 14px;
    max-width: 80%;
}

.message.user .message-content {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 18px 18px 4px 18px;
    padding: 10px 14px;
    max-width: 80%;
    margin-left: auto;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-options button {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}

.chatbot-input {
    display: flex;
    padding: 12px;
    border-top: 1px solid var(--border-color);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.chatbot-input button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 24px;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    min-width: 200px;
    display: none;
    z-index: 100;
    border: 1px solid var(--border-color);
}

.user-dropdown-menu.show {
    display: block;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark-color);
}

.user-dropdown-menu a:hover {
    background: var(--light-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .venue-selector-wrapper {
        order: 3;
        max-width: 100%;
        margin-top: 12px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-text-center h1 {
        font-size: 32px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .chatbot-container {
        width: calc(100% - 32px);
        right: 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
}