:root {
    --primary-color: #5B134D;
    --primary-light: #FDF4F8;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #EEEEEE;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --success: #22C55E;
    --warning: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    gap: 20px;
    margin: 0 80px;
    padding: 0 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: #4a0f3e;
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

/* Header */
.header {
    padding: 16px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(91, 19, 77, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.5) 100%), url('image/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1.5;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 450px;
}

.search-form {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 8px;
    border: 1px solid var(--border-color);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.search-input-group.border-left {
    border-left: 1px solid var(--border-color);
}

.search-input-group i {
    color: var(--text-muted);
    font-size: 20px;
}

.search-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    padding: 12px 0;
    font-family: inherit;
}

.btn-search {
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 8px;
}

.hero-image {
    flex: 0.8;
    max-width: 450px;
    min-width: 450px;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(253, 244, 248, 1) 0%, rgba(248, 249, 250, 0) 100%);
    border-radius: 50%;
    z-index: 0;
}

.phone-mockup {
    height: 90%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: 8px solid #222;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    width: max-content;
}

.floating-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.card-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    margin-bottom: 4px;
}

.score {
    font-weight: 600;
    color: var(--warning);
}

.stars i {
    color: var(--warning);
    font-size: 10px;
}

.status {
    font-size: 10px;
    color: var(--success);
    font-weight: 500;
}

.card-1 {
    top: 12%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 42%;
    right: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 22%;
    left: -15px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Categories */
.categories {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.categories-list {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.categories-list::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 90px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.category-item:hover .icon-box,
.category-item.active .icon-box {
    background-color: var(--primary-light);
    border-color: rgba(91, 19, 77, 0.1);
    transform: translateY(-5px);
}

.category-item.active span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Business Sections */
.business-section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.view-all:hover {
    gap: 12px;
}

.carousel-container {
    position: relative;
}

.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.business-card {
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

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

.card-image {
    position: relative;
    height: 160px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-logo {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--white);
    overflow: hidden;
    background: var(--white);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 35px 20px 20px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.card-body .category {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.rating-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 12px;
}

.reviews {
    color: var(--text-muted);
}

.location {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.status {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-btn {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

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

/* Ad Layout Wrapper */
.content-with-ads {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) 200px;
    gap: 30px;
    margin: 40px 40px;
    /* Restored the margin so it aligns perfectly with your header/hero! */
    padding: 0;
    align-items: start;
}

/* Override inner container margins inside main content */
.main-content .container {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Sidebar Ads */
.ad-sidebar {
    border-radius: 12px;
    padding: 30px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 120px);
    /* Tall sticky banner */
    position: sticky;
    top: 90px;
    /* Sticky positioning */
    display: flex;
    flex-direction: column;
}

.ad-sidebar.left-ad {
    background: linear-gradient(180deg, #8A1C75 0%, #5B134D 100%);
}

.ad-sidebar.right-ad {
    background: linear-gradient(180deg, #1A237E 0%, #0D47A1 100%);
}

.ad-sidebar h3 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ad-sidebar h3 span {
    color: #FFD166;
}

.ad-sidebar p {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.ad-sidebar .btn {
    width: 100%;
    margin-bottom: auto;
    font-weight: 600;
}

.ad-decoration {
    margin-top: 20px;
    width: 100%;
}

.ad-decoration img {
    width: 100%;
    height: auto;
    transform: scale(1.2);
}

/* Top Ad Banner */
.top-ad-banner {
    background: #0D47A1;
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.top-ad-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-ad-icon img {
    height: 70px;
}

.top-ad-text h2 {
    font-size: 26px;
    line-height: 1.2;
}

/* Bottom Ad Banner */
.bottom-ad-banner {
    background: linear-gradient(90deg, #311B92 0%, #1A237E 100%);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.bottom-ad-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-ad-icon {
    height: 70px;
}

.bottom-ad-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.bottom-ad-text p {
    font-size: 15px;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    padding: 20px 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(91, 19, 77, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.purple {
    background: rgba(138, 43, 226, 0.1);
    color: blueviolet;
}

.stat-icon.teal {
    background: rgba(0, 128, 128, 0.1);
    color: teal;
}

.stat-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 700;
}

.stat-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.brand-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 16px 0;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

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

.app-buttons {
    display: flex;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 24px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text span {
    font-size: 9px;
    line-height: 1;
}

.app-btn-text strong {
    font-size: 12px;
    line-height: 1.2;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
}

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

.newsletter-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom i {
    color: #EF4444;
}

/* --- Business Profile Page Styles --- */

/* Breadcrumbs */
.breadcrumb-bar {
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.breadcrumbs a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumbs span {
    font-weight: 600;
    color: var(--text-color);
}

.breadcrumb-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-color);
}

.action-btn:hover {
    color: var(--primary-color);
}

/* Profile Header */
.profile-header {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.profile-cover {
    position: relative;
    height: 300px;
    width: 100%;
}

.profile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.profile-info-container {
    padding: 20px 30px;
    display: flex;
    gap: 30px;
    position: relative;
}

.profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    border: 5px solid var(--white);
    overflow: hidden;
    margin-top: -80px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-details-top {
    flex: 1;
}

.profile-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.profile-title-row h2 {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-icon {
    color: var(--success-color);
    font-size: 22px;
}

.save-icon-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 500;
}

.profile-category {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 12px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.meta-separator {
    color: var(--border-color);
}

.profile-actions {
    display: flex;
    gap: 15px;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    border-top: 1px solid var(--border-color);
    padding: 0 30px;
    gap: 30px;
    overflow-x: auto;
}

.profile-tabs .tab {
    padding: 15px 0;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.profile-tabs .tab.active,
.profile-tabs .tab:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* 2-Column Content Layout */
.profile-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.content-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.card-header-flex h3 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* About Section */
.about-text {
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-item > i {
    font-size: 22px;
    color: var(--primary-color);
    background: rgba(91, 19, 77, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.detail-item h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 15px;
    font-weight: 500;
}

/* Gallery & Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.media-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.media-more {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.video-grid {
    grid-template-columns: repeat(4, 1fr);
}

.video-thumb {
    position: relative;
}

.video-thumb img {
    height: 140px;
}

.play-btn {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    pointer-events: none;
}

.duration {
    position: absolute;
    bottom: 35px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.video-thumb h5 {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
}

/* Reviews Summary */
.reviews-summary {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.summary-score {
    text-align: center;
}

.score-big {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
}

.summary-bars {
    flex: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: var(--background-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--success-color);
}

/* Individual Reviews */
.review-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-info h4 {
    margin-bottom: 5px;
}

.review-date {
    margin-left: auto;
    color: var(--text-light);
    font-size: 13px;
}

.review-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-photos {
    display: flex;
    gap: 10px;
}

.review-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

/* Sidebar Widgets */
.booking-widget, .promote-widget, .highlights-widget, .share-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.booking-widget h3, .promote-widget h3, .highlights-widget h3, .share-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.select-wrapper select, .input-with-icon input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: var(--white);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.time-slot {
    padding: 10px 5px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
}

.time-slot:hover, .time-slot.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.booking-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

.promote-widget {
    background: linear-gradient(135deg, #5B134D, #311B92);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promote-widget p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promote-img {
    position: absolute;
    bottom: -10px;
    right: -20px;
    width: 120px;
    opacity: 0.8;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.text-success {
    color: var(--success-color);
    font-size: 18px;
}

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

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.w-100 {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brand-col,
    .newsletter-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .search-input-group {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 8px 16px;
    }

    .search-input-group.border-left {
        border-left: 1px solid var(--border-color);
    }

    .nav-links {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-ad-banner,
    .bottom-ad-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .top-ad-content,
    .bottom-ad-left {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .content-with-ads {
        grid-template-columns: 1fr;
        /* Hide sidebars space */
        margin: 40px 20px;
        /* Smaller margins for tablet/mobile */
    }

    .ad-sidebar {
        display: none;
        /* Sidebars won't fit well on tablets, hide them */
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-col,
    .newsletter-col {
        grid-column: span 1;
    }
}