:root {
    /* Color Palette */
    --blue: #0066cc;
    --light-blue: #00a8e8;
    --purple: #9b59b6;
    --pink: #e91e63;
    --gold: #ffd700;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
}

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

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--blue);
    text-decoration: none;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    display: block;
    line-height: 1.2;
}

.site-domain {
    color: #000000;
    -webkit-text-fill-color: #000000;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.2rem;
    opacity: 0.9;
    display: block;
    line-height: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--blue);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    background-image: url('../image/herofonglavnii.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

/* Hero About Page */
.hero-about {
    background-image: url('../image/herofon2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Analytics Page */
.hero-analytics {
    background-image: url('../image/herofon3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Venues Page */
.hero-venues {
    background-image: url('../image/herofon4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Leisure Page */
.hero-leisure {
    background-image: url('../image/herofon5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Insights Page */
.hero-insights {
    background-image: url('../image/herofon6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Contact Page */
.hero-contact {
    background-image: url('../image/hero888.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Section with Background */
.section-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 30px 0;
}

/* Analytics Page Background */
body.analytics-page {
    background-image: url('../image/fonrazdela.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.analytics-page .content-page {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin: 20px;
    padding: 40px 20px 80px;
}

body.analytics-page .section-subtitle {
    color: var(--dark);
}

/* Venues Page Background */
body.venues-page {
    background-image: url('../image/fonrazdela2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.venues-page .content-page {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin: 20px;
    padding: 40px 20px 80px;
}

/* Insights Page Background */
body.insights-page {
    background-image: url('../image/fonrazdela4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.insights-page .content-page {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    margin: 20px;
    padding: 40px 20px 80px;
}

.analytical-framework-section {
    background: transparent;
    padding: 40px 20px;
    border-radius: 10px;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,30,99,0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blue);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About System */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--blue);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

.about-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--purple);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.about-card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.about-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Blocks */
.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Venues Content Blocks - Two in Row */
.venues-content-blocks {
    grid-template-columns: repeat(2, 1fr);
}

.content-blocks.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.content-block {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--blue);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-left-color: var(--purple);
}

.content-block-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.content-block-content {
    padding: 25px;
}

.content-block h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.content-block-full {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
    border-top: 4px solid var(--purple);
    overflow: hidden;
}

.content-block-full-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Leisure Row - Card and Image Side by Side */
.leisure-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin: 30px 0;
}

.leisure-row-reverse {
    flex-direction: row-reverse;
}

.leisure-image {
    width: 50%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.leisure-row .content-block-full {
    margin: 0;
}

/* Insights Cards - Alternating Left and Right */
.insights-card-right {
    margin-left: auto;
    max-width: 65%;
}

.insights-card-left {
    margin-right: auto;
    max-width: 65%;
}

/* Insights Section Titles */
h2.insights-section-title {
    color: var(--dark) !important;
}

.content-block-full-content {
    padding: 40px;
}

.content-block-full h2 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-block-full p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block-full.background-image {
    position: relative;
    padding: 40px;
    color: var(--white);
    min-height: 300px;
}

.content-block-full.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.content-block-full.background-image .content-block-full-content {
    position: relative;
    z-index: 1;
}

.content-block-full.background-image h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.content-block-full.background-image p {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Light Lavender Background Sections */
.content-block-full.light-lavender-bg {
    background: #e6d9f2;
    padding: 40px;
    border-top: none;
}

.content-block-full.light-lavender-bg .content-block-full-content {
    background: transparent;
}

.content-block-full.light-lavender-bg h2 {
    color: var(--blue);
}

.content-block-full.light-lavender-bg p {
    color: var(--text);
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    color: var(--text);
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.category-card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue);
    position: relative;
    z-index: 1;
}

.category-card p {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

/* Contact Info */
.contact-info {
    background: var(--light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-item h3 {
    color: var(--blue);
    margin-bottom: 1rem;
}

.contact-info-item a {
    color: var(--purple);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-info-item a:hover {
    color: var(--pink);
}

/* Map */
.contact-map {
    padding: 80px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Links */
a {
    color: var(--blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--purple);
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Content pages */
.content-page {
    padding: 40px 0 80px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blue);
    text-align: center;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    color: var(--blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h2.insights-section-title {
    color: var(--dark) !important;
}

.page-content h3 {
    color: var(--purple);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-card-content {
    padding: 20px;
}

.venue-card h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.venue-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.data-table thead {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light);
}

.data-table tbody tr:hover {
    background: var(--light);
    transition: background 0.3s;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background: #e6d9f2;
    padding: 80px 0;
}

.faq-section .section-title {
    color: var(--blue);
}

.faq-section .section-subtitle {
    color: var(--text);
}

/* Accordion */
.accordion {
    margin: 30px 0;
}

.accordion-item {
    border: 1px solid var(--light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-section .accordion-item {
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.accordion-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.accordion-header.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 20px;
    transition: max-height 0.5s ease-in;
}

.accordion-content p {
    margin-bottom: 1rem;
}

.accordion-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Venues Articles Grid - Three in Row */
.venues-articles-grid {
    grid-template-columns: repeat(3, 1fr);
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-content {
    padding: 25px;
}

.article-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-card-title {
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: var(--purple);
}

.article-card-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-card-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-card-link:hover {
    color: var(--pink);
}

/* Reviews */
.reviews-section {
    margin: 50px 0;
    position: relative;
    padding: 80px 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image/fondlyaotzivov.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-left-color: var(--purple);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

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

.review-author-name {
    font-weight: 600;
    color: var(--blue);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-rating {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-venue {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Stats Grid Enhanced */
.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card-enhanced {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top-color: var(--purple);
}

.stat-card-enhanced .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-enhanced .stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 102, 204, 0.1);
}

.comparison-table .highlight {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-secondary {
    background: var(--light);
    color: var(--text);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 19px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--blue);
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-date {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-title {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description {
    color: var(--text-light);
}

