/* Modern Professional Styles */
:root {
    --primary-color: #005f73;
    --secondary-color: #0a9396;
    --accent-color: #ee9b00;
    --dark-accent: #ca6702;
    --light-color: #e9d8a6;
    --dark-color: #001219;
    --text-color: #333;
    --text-light: #fff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #adb5bd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--gray-light);
    padding-top: 64px; /* for fixed navbar */
}

.container {
    display: grid;
    grid-template-columns: 1fr 250px;
    min-height: 100vh;
}

/* Header/Hero */
.hero {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.9) 0%, rgba(10, 147, 150, 0.9) 100%), 
                url('assets/images/hero-bg.jpg') center/cover;
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--dark-accent) 100%);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 2.5rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Ad Banner/Slider */
.ad-banner {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.slider {
    position: relative;
    height: 350px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    opacity: 0.9;
}

/* Categories */
.categories h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--gray-medium);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.category-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 2rem 1.5rem;
    border-left: 1px solid var(--gray-medium);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.03);
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-medium);
}

.ad-spot {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.ad-spot:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ad-spot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 100;
}

.fab-chatbot, .fab-whatsapp {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.fab-chatbot::after, .fab-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-chatbot:hover, .fab-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Chatbot Modal */
.chatbot-modal {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    flex-direction: column;
    max-height: 550px;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

.chatbot-header {
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-weight: 600;
    font-size: 1.2rem;
}

.close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s;
    line-height: 1;
}

.close-chatbot:hover {
    transform: rotate(90deg);
}

.chatbot-body {
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: auto;
    flex-grow: 1;
    background-color: var(--gray-light);
    word-break: break-word;
}

.chatbot-message {
    margin-bottom: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    max-width: 85%;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease-out;
    word-break: break-word;
    overflow-x: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: white;
    align-self: flex-start;
    margin-right: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-medium);
    border-bottom-left-radius: 5px;
}

.user-message {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chatbot-footer {
    padding: 1.2rem;
    display: flex;
    border-top: 1px solid var(--gray-medium);
    background: white;
}

.chatbot-footer input {
    flex-grow: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--gray-medium);
    border-radius: 25px;
    margin-right: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.chatbot-footer input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.2);
}

.chatbot-footer button {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.chatbot-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(10, 147, 150, 0.3);
}

/* Category Page Specific Styles */
.back-button {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.back-button:hover {
    background-color: rgba(10, 147, 150, 0.1);
    transform: translateX(-5px);
}

.back-button i {
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.back-button:hover i {
    transform: translateX(-3px);
}

.page-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--dark-accent) 100%);
    border-radius: 2px;
}

.page-description {
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    line-height: 1.7;
}

.listings {
    display: grid;
    gap: 2.5rem;
}

.listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 320px 1fr;
    transition: all 0.3s;
    border: 1px solid var(--gray-medium);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.listing-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.listing-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.listing-details h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
}

.location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.location i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
    color: #555;
}

.amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #555;
    background-color: var(--gray-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.amenities i {
    color: var(--secondary-color);
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-accent);
}

.price small {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.contact-button {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 147, 150, 0.3);
}

/* Filter Section */
.filter-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-medium);
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.filter-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.filter-group select, .filter-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: white;
}

.filter-group select:focus, .filter-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.apply-filters {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 1rem;
}

.apply-filters:hover {
    background-color: var(--dark-accent);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .listing-card {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 300px;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 1.8rem;
    }
    
    .listing-card {
        grid-template-columns: 1fr;
    }
    
    .listing-image {
        height: 200px;
    }
    
    .chatbot-modal {
        width: 90%;
        right: 5%;
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .filter-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .fab-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .fab-chatbot, .fab-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* Health Page Specific Styles */
.emergency-banner {
    background-color: #fff8f8;
    border: 1px solid #ffdddd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.emergency-content {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.emergency-content i {
    font-size: 2rem;
    color: #e63946;
    margin-right: 1rem;
}

.emergency-content h3 {
    color: #e63946;
    margin-bottom: 0.3rem;
}

.emergency-content p {
    color: #666;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.2rem;
    color: #e63946;
    margin-right: 0.8rem;
}

.contact-item span {
    font-size: 0.95rem;
}

.contact-item strong {
    color: #e63946;
}

.health-tip {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.health-tip i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.health-tip p {
    font-size: 0.95rem;
    color: #555;
}

/* Medical specific badges */
.listing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.listing-badge {
    background-color: #e63946; /* Red for emergency */
}

.listing-badge[data-type="wellness"] {
    background-color: var(--secondary-color); /* Teal for wellness */
}

.listing-badge[data-type="pharmacy"] {
    background-color: #4c9f70; /* Green for pharmacy */
}

.listing-badge[data-type="dental"] {
    background-color: #3a86ff; /* Blue for dental */
}

/* Responsive adjustments for health page */
@media (max-width: 768px) {
    .emergency-contacts {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-content i {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

/* --- Navigation Bar Styles --- */
.navbar {
    width: 100%;
    background: rgba(10, 106, 94, 0.97);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    backdrop-filter: blur(8px);
}
.navbar-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    gap: 0.7rem;
    padding-right: 1.2rem;
}
.navbar-logo img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    margin-right: 0.5rem;
}
.navbar-links {
    display: flex;
    gap: 2.2rem;
}
.navbar-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s, border-bottom 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.navbar-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.navbar-links a:hover {
    color: var(--accent-color);
}
.navbar-links a:hover::after {
    width: 100%;
}

@media (max-width: 700px) {
    .navbar {
        padding: 0.5rem 0.5rem;
    }
    .navbar-logo {
        padding-right: 0.5rem;
    }
}

/* --- Hero Section for Events Page --- */
.hero-events {
    width: 100%;
    min-height: 260px;
    max-height: 420px;
    height: 34vw;
    display: flex;
    align-items: stretch;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: height 0.3s, min-height 0.3s, max-height 0.3s;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    animation: fadeInHero 1.1s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-events .hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    background: repeating-linear-gradient(120deg, #0a9396 0 2px, transparent 2px 40px), var(--dark-color);
    background-size: 40px 40px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}
.hero-events .hero-left h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 2.5px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-events .hero-left .hero-sub {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.1rem;
    color: #e9ecef;
    font-weight: 500;
    letter-spacing: 1.2px;
}
.hero-events .hero-right {
    flex: 1.6;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: #fff;
    overflow: hidden;
    min-width: 220px;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.hero-events .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
    max-height: 420px;
    filter: brightness(0.93) contrast(1.08);
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}
.hero-events .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.32) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-events .hero-bottom {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.6rem 2.6rem 1.6rem 2.6rem;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,18,25,0.93) 80%, transparent 100%);
}
.hero-events .hero-bottom .hero-title {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-events .hero-bottom .hero-explore {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 1rem;
    padding: 0.7rem 1.2rem;
    backdrop-filter: blur(6px);
}
.hero-events .explore-btn {
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: #fff;
    padding: 0.65rem 1.7rem;
    border-radius: 2rem;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-events .explore-btn:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.04);
}
.hero-events .explore-btn .fa-arrow-right {
    font-size: 1.1em;
    margin-left: 0.2em;
}
.hero-events .qr-code {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    border: 1.5px solid #fff;
   
}
.hero-events .qr-code img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .hero-events {
        flex-direction: column;
        min-height: 180px;
        max-height: 320px;
        height: auto;
        border-radius: 1.2rem;
    }
    .hero-events .hero-left, .hero-events .hero-right {
        padding: 1.5rem 1.2rem;
    }
    .hero-events .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
        padding: 1.2rem 1.2rem;
    }
}
@media (max-width: 700px) {
    .hero-events {
        flex-direction: column;
        min-height: 140px;
        max-height: none;
        height: auto;
        padding: 0;
        border-radius: 0.7rem;
    }
    .hero-events .hero-left, .hero-events .hero-right {
        width: 100%;
        min-width: 0;
        padding: 1.1rem 0.7rem 0.7rem 0.7rem;
        box-sizing: border-box;
    }
    .hero-events .hero-left h1 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .hero-events .hero-left .hero-sub {
        font-size: 1.01rem;
        margin-bottom: 0.7rem;
    }
    .hero-events .hero-img {
        min-height: 90px;
        max-height: 90px;
        width: 100%;
        border-radius: 0.7rem;
    }
    .hero-events .hero-bottom {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 0.7rem 0.7rem 0.7rem 0.7rem;
        background: none;
        width: 100%;
    }
    .hero-events .hero-bottom .hero-title {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
        font-weight: 900;
        background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        text-shadow: 0 2px 8px rgba(0,0,0,0.18);
        letter-spacing: 1.5px;
    }
    .hero-events .hero-bottom .hero-explore {
        flex-direction: row;
        gap: 0.7rem;
        align-items: center;
        padding: 0.5rem 0.7rem;
        border-radius: 0.7rem;
    }
    .hero-events .explore-btn {
        font-size: 0.98rem;
        padding: 0.35rem 1rem;
        margin-bottom: 0;
        border-radius: 1.2rem;
    }
    .hero-events .qr-code {
        width: 70px;
        height: 70px;
        border-radius: 7px;
    }
    .hero-events .qr-code img {
        width: 70px;
        height: 70px;
        border-radius: 3px;
    }
}

/* --- Modern Hero Section for Restaurants --- */
.hero-restaurants {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: stretch;
    background: linear-gradient(120deg, #0a9396 0%, #001219 100%);
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin-bottom: 2.5rem;
}
.hero-rest-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.8rem 2.2rem 2.8rem 3.2rem;
    z-index: 2;
    position: relative;
}
.hero-rest-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.hero-rest-sub {
    font-size: 1.1rem;
    color: #e9ecef;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.85;
}
.hero-rest-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-rest-desc {
    font-size: 1.15rem;
    color: #e9ecef;
    font-weight: 400;
    letter-spacing: 1.2px;
    opacity: 0.92;
    margin-bottom: 0.7rem;
}
.hero-rest-btn {
    display: inline-block;
    background: #f6e9c6;
    color: #222;
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    border-radius: 2rem;
    padding: 0.7rem 2.1rem;
    margin-top: 0.5rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-rest-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.04);
}
.hero-rest-qr {
    margin-top: 0.5rem;
    background: #fff;
    border-radius: 0.7rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 0.4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-rest-qr img {
    width: 100px;
    height: 100px;
    border-radius: 0.4rem;
}
.hero-rest-right {
    flex: 1.6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    overflow: visible;
}
.hero-rest-accent {
    position: absolute;
    top: -60px;
    left: 40px;
    width: 220px;
    height: 600px;
    background: #014c4e;
    transform: rotate(35deg);
    border-radius: 1.2rem;
    z-index: 1;
    opacity: 0.93;
}
.hero-rest-images {
    position: relative;
    z-index: 2;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: hidden;
    transform: rotate(45deg);
    border: 6px solid #fff;
}
.diamond img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg);
}
.diamond1 { top: 20px; left: 100px; z-index: 3; }
.diamond2 { top: 110px; left: 200px; z-index: 2; }
.diamond3 { top: 180px; left: 30px; z-index: 2; }
.diamond4 { top: 70px; left: 220px; width: 80px; height: 80px; z-index: 1; border-width: 4px; }
.diamond4 img { border-radius: 0.7rem; }

@media (max-width: 1024px) {
    .hero-restaurants {
        flex-direction: column;
        min-height: 220px;
        border-radius: 1.2rem;
    }
    .hero-rest-left, .hero-rest-right {
        padding: 1.5rem 1.2rem;
    }
    .hero-rest-images {
        width: 260px;
        height: 260px;
    }
    .diamond, .diamond1, .diamond2, .diamond3 {
        width: 80px;
        height: 80px;
    }
    .diamond4 {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 700px) {
    .hero-restaurants {
        flex-direction: column;
        min-height: 120px;
        border-radius: 0.7rem;
        margin-bottom: 1.2rem;
    }
    .hero-rest-left {
        padding: 1.1rem 0.7rem 0.7rem 0.7rem;
    }
    .hero-rest-title {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    .hero-rest-desc {
        font-size: 0.98rem;
        margin-bottom: 0.4rem;
    }
    .hero-rest-btn {
        font-size: 0.95rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 0.7rem;
    }
    .hero-rest-qr {
        width: 70px;
        height: 70px;
        padding: 0.2rem;
    }
    .hero-rest-qr img {
        width: 70px;
        height: 70px;
    }
    .hero-rest-right {
        min-width: 0;
        padding: 0.7rem 0.7rem 1.1rem 0.7rem;
    }
    .hero-rest-accent {
        width: 90px;
        height: 220px;
        top: -30px;
        left: 20px;
    }
    .hero-rest-images {
        width: 120px;
        height: 120px;
    }
    .diamond, .diamond1, .diamond2, .diamond3 {
        width: 38px;
        height: 38px;
        border-width: 2.5px;
    }
    .diamond4 {
        width: 22px;
        height: 22px;
        border-width: 1.5px;
    }
}

/* --- Custom Modern Hero Section for Main Pages --- */
.hero-restaurants-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #0a9396 0%, #001219 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-rest-left {
  flex: 1.2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 2;
}
.hero-rest-left h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 400;
  opacity: 0.85;
}
.hero-rest-left h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 0.2rem;
}
.hero-rest-desc {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  opacity: 0.92;
  margin-bottom: 0.7rem;
}
.hero-rest-btn {
  display: inline-block;
  background: #f6e9c6;
  color: #222;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-rest-btn:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.04);
}
.hero-rest-qr {
  margin-top: 0.5rem;
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-rest-qr img {
  width: 100px;
  height: 100px;
  border-radius: 0.4rem;
}
.hero-rest-right {
  flex: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  position: relative;
}
.diamond-collage {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  overflow: hidden;
  transform: rotate(45deg);
  border: 6px solid #fff;
}
.diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg);
}
.diamond1 { top: 20px; left: 100px; z-index: 3; }
.diamond2 { top: 110px; left: 200px; z-index: 2; }
.diamond3 { top: 180px; left: 30px; z-index: 2; }
.diamond4 { top: 70px; left: 220px; width: 80px; height: 80px; z-index: 1; border-width: 4px; }
.diamond4 img { border-radius: 0.7rem; }

@media (max-width: 1024px) {
  .hero-restaurants-custom {
    flex-direction: column;
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }
  .hero-rest-right {
    min-width: 0;
    padding: 1.5rem 0 0 0;
  }
  .diamond-collage {
    width: 220px;
    height: 220px;
  }
  .diamond, .diamond1, .diamond2, .diamond3 {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }
  .diamond4 {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
}
@media (max-width: 700px) {
  .hero-restaurants-custom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero-rest-left {
    align-items: center;
    gap: 0.7rem;
  }
  .hero-rest-left h1 {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
  }
  .hero-rest-left h2 {
    font-size: 1rem;
  }
  .hero-rest-desc {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .hero-rest-btn {
    font-size: 1rem;
    padding: 0.5rem 1.3rem;
    margin-bottom: 0.5rem;
    border-radius: 1.2rem;
  }
  .hero-rest-qr {
    width: 70px;
    height: 70px;
    padding: 0.2rem;
    margin: 0 auto;
  }
  .hero-rest-qr img {
    width: 70px;
    height: 70px;
  }
  .hero-rest-right {
    min-width: 0;
    padding: 0.5rem 0 0 0;
    justify-content: center;
  }
  .diamond-collage {
    display: none;
  }
}

/* --- Hamburger Menu Styles --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1100;
}
@media (max-width: 900px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    background: var(--dark-color);
    flex-direction: column;
    width: 220px;
    height: calc(100vh - 64px);
    box-shadow: -2px 0 16px rgba(0,0,0,0.13);
    padding: 2rem 1.2rem;
    gap: 1.5rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    transform: translateX(100%);
  }
  .navbar-links.open {
    display: flex;
    transform: translateX(0);
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 2.5rem;
    top: 0.7rem;
  }
}
.navbar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1099;
}
.navbar-overlay.active {
  display: block;
}

/* --- Glassmorphic Hero for Transport Page --- */
.hero-transport-glass {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
}
.hero-transport-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-transport-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) blur(0.5px);
}
.hero-transport-card {
  position: relative;
  z-index: 2;
  background: rgba(10, 147, 150, 0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 1.2rem;
  padding: 2.2rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
  max-width: 420px;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.hero-transport-card-header {
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  font-weight: 500;
}
.hero-transport-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.hero-transport-sub {
  font-size: 1.1rem;
  color: #e9ecef;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}
.hero-transport-qr {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-transport-qr img {
  width: 70px;
  height: 70px;
  border-radius: 0.4rem;
}
@media (max-width: 900px) {
  .hero-transport-card {
    min-width: 0;
    max-width: 95vw;
    padding: 1.2rem 1rem 1.5rem 1rem;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .hero-transport-glass {
    min-height: 320px;
    border-radius: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero-transport-bg {
    display: none;
  }
  .hero-transport-card {
    padding: 1.1rem 0.5rem 1.2rem 0.5rem;
    border-radius: 0.7rem;
    min-width: 0;
    max-width: 100vw;
    align-items: center;
    text-align: center;
  }
  .hero-transport-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  .hero-transport-sub {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .hero-transport-qr {
    width: 70px;
    height: 70px;
    padding: 0.2rem;
    margin: 0 auto;
  }
  .hero-transport-qr img {
    width: 70px;
    height: 70px;
  }
}

/* --- Modern Hero for Health Page --- */
.hero-health-modern {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #0a6a5e;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.hero-health-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3.2rem 2.2rem 3.2rem 3.2rem;
  z-index: 2;
  color: #fff;
}
.hero-health-left h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 2.2rem;
  line-height: 1.1;
}
.hero-health-btn {
  display: inline-block;
  background: #7eb6b2;
  color: #1a2b2b;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 0.2rem;
  padding: 0.7rem 2.1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-health-btn:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.04);
}
.hero-health-qr {
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}
.hero-health-qr img {
  width: 100px;
  height: 100px;
  border-radius: 0.1rem;
}
.hero-health-right {
  flex: 1.4;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 220px;
  overflow: hidden;
}
.hero-health-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.08);
}
.hero-health-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(10,106,94,0.85) 60%, rgba(10,106,94,0.32) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-health-modern {
    flex-direction: column;
    min-height: 260px;
    border-radius: 1.2rem;
  }
  .hero-health-left {
    padding: 2rem 1.2rem 2rem 1.2rem;
    align-items: center;
    text-align: center;
  }
  .hero-health-left h1 {
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
  }
  .hero-health-right {
    min-width: 0;
    padding: 0;
    height: 180px;
  }
}
@media (max-width: 700px) {
  .hero-health-modern {
    flex-direction: column;
    min-height: 180px;
    border-radius: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero-health-left {
    padding: 1.1rem 0.7rem 0.7rem 0.7rem;
    align-items: center;
    text-align: center;
  }
  .hero-health-left h1 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .hero-health-btn {
    font-size: 0.95rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.7rem;
  }
  .hero-health-qr {
    width: 70px;
    height: 70px;
    padding: 0.2rem;
    margin-top: 0.7rem;
  }
  .hero-health-qr img {
    width: 70px;
    height: 70px;
  }
  .hero-health-right {
    min-width: 0;
    height: 90px;
    padding: 0;
  }
  .hero-health-right img {
    object-fit: cover;
  }
}

/* --- Modern Hero for Tours Page --- */
.hero-tours-modern {
  width: 100%;
  min-height: 420px;
  background: linear-gradient(120deg, #0a9396 0%, #014c4e 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-tours-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-tours-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) blur(0.5px);
}
.hero-tours-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(10,147,150,0.65) 60%, rgba(1,76,78,0.32) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-tours-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}
.hero-tours-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
  letter-spacing: 1.5px;
}
.hero-tours-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.hero-tours-visuals {
  position: relative;
  width: 340px;
  height: 180px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-tours-plane {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  transform: translateX(-50%) scale(1.1) rotate(-6deg);
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.13));
}
.hero-tours-laptop {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  height: 120px;
  transform: translateX(-50%);
  z-index: 3;
  background: #222;
  border-radius: 0.7rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-tours-laptop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.7rem;
}
.hero-tours-sub {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1.5px;
  text-align: center;
}
.hero-tours-qr {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-tours-qr img {
  width: 70px;
  height: 70px;
  border-radius: 0.4rem;
}
@media (max-width: 900px) {
  .hero-tours-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .hero-tours-visuals {
    width: 220px;
    height: 110px;
  }
  .hero-tours-plane {
    width: 120px;
  }
  .hero-tours-laptop {
    width: 120px;
    height: 60px;
  }
}
@media (max-width: 700px) {
  .hero-tours-modern {
    min-height: 180px;
    border-radius: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero-tours-content {
    padding: 0.7rem 0.2rem 1.1rem 0.2rem;
  }
  .hero-tours-headline {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
  }
  .hero-tours-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-tours-visuals {
    width: 110px;
    height: 50px;
    margin-bottom: 0.5rem;
  }
  .hero-tours-plane {
    width: 60px;
  }
  .hero-tours-laptop {
    width: 60px;
    height: 30px;
    border-radius: 0.3rem;
  }
  .hero-tours-laptop img {
    border-radius: 0.3rem;
  }
  .hero-tours-sub {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-tours-qr {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 70px;
    height: 70px;
    padding: 0.1rem;
  }
  .hero-tours-qr img {
    width: 70px;
    height: 70px;
  }
}

.hero-tours-mainimg {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 320px;
  max-width: 90vw;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-tours-mainimg {
    width: 160px;
    height: 90px;
  }
}
@media (max-width: 700px) {
  .hero-tours-mainimg {
    width: 80px;
    height: 45px;
    border-radius: 0.5rem;
  }
  .hero-tours-sub {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    position: static;
    z-index: 3;
  }
}

/* --- Modern Hero for Hotels Page --- */
.hero-hotels-modern {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #0a6a5e;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.hero-hotels-img {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2.5rem 0 2.5rem 2.5rem;
}
.hero-hotels-img img {
  width: 100%;
  max-width: 520px;
  height: 340px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.hero-hotels-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3.2rem 3.2rem 3.2rem 2.2rem;
  color: #fff;
}
.hero-hotels-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  line-height: 1.3;
}
.luxury-highlight {
  color: #4c9fef;
  font-weight: 700;
  font-size: 1.1em;
}
.hero-hotels-btn {
  display: inline-block;
  background: #f6e9c6;
  color: #1a2b2b;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-hotels-btn:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.04);
}
.hero-hotels-qr {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0 1.2rem 0;
}
.hero-hotels-qr img {
  width: 100px;
  height: 100px;
  border-radius: 0.4rem;
}
.hero-hotels-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.hero-hotels-socials a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.hero-hotels-socials a:hover {
  color: #4c9fef;
}
@media (max-width: 1024px) {
  .hero-hotels-modern {
    flex-direction: column;
    min-height: 260px;
    border-radius: 1.2rem;
  }
  .hero-hotels-img {
    padding: 1.2rem 0 0.7rem 0.7rem;
    justify-content: center;
  }
  .hero-hotels-img img {
    max-width: 100vw;
    height: 180px;
    border-radius: 0.7rem;
  }
  .hero-hotels-content {
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    align-items: center;
    text-align: center;
  }
  .hero-hotels-title {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }
}
@media (max-width: 700px) {
  .hero-hotels-modern {
    flex-direction: column;
    min-height: 180px;
    border-radius: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero-hotels-img {
    padding: 0.7rem 0 0.7rem 0.7rem;
  }
  .hero-hotels-img img {
    height: 90px;
    border-radius: 0.5rem;
  }
  .hero-hotels-content {
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    align-items: center;
    text-align: center;
  }
  .hero-hotels-title {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .hero-hotels-btn {
    font-size: 0.95rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.7rem;
  }
  .hero-hotels-qr {
    width: 70px;
    height: 70px;
    padding: 0.2rem;
    margin: 0.7rem auto 0.7rem auto;
  }
  .hero-hotels-qr img {
    width: 70px;
    height: 70px;
  }
  .hero-hotels-socials {
    gap: 0.7rem;
    margin-top: 0.7rem;
  }
  .hero-hotels-socials a {
    font-size: 1.1rem;
  }
}

.hero-hotels-modern,
.hero-health-modern,
.hero-tours-modern,
.hero-transport-glass,
.hero-restaurants-custom {
  margin-top: 36px;
}
@media (max-width: 700px) {
  .hero-hotels-modern,
  .hero-health-modern,
  .hero-tours-modern,
  .hero-transport-glass,
  .hero-restaurants-custom {
    margin-top: 28px;
  }
}

/* --- Modern Landing Hero --- */
.landing-hero {
  width: 100%;
  padding: 3.5rem 1.5rem 3rem 1.5rem;
  background: #f8f9fa;
  border-radius: 1.2rem;
  margin-top: 36px;
  margin-bottom: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.landing-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  letter-spacing: 1.5px;
}
.landing-hero p {
  font-size: 1.2rem;
  color: #555;
  opacity: 0.95;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .landing-hero {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    border-radius: 0.7rem;
    margin-top: 28px;
    margin-bottom: 1.2rem;
  }
  .landing-hero h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .landing-hero p {
    font-size: 0.95rem;
  }
}

/* --- Modern Category Cards --- */
.category-card {
  background: white;
  border-radius: 16px;
  padding: 2.2rem 1.7rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--gray-medium);
  font-weight: 500;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.category-card i {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Modern Ad Banner --- */
.ad-banner {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
  position: relative;
}
.slider {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .landing-hero {
    min-height: 220px;
    border-radius: 1.2rem;
  }
  .ad-banner, .slider, .slide img {
    border-radius: 1.2rem;
  }
}
@media (max-width: 700px) {
  .landing-hero {
    min-height: 120px;
    border-radius: 0.7rem;
    margin-top: 28px;
    margin-bottom: 1.2rem;
    padding: 1.2rem 0.5rem;
  }
  .landing-hero h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .landing-hero p {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }
  .landing-hero .landing-cta {
    font-size: 0.95rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.7rem;
  }
  .ad-banner, .slider, .slide img {
    border-radius: 0.7rem;
  }
}

.landing-hero-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 2.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.landing-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.landing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) blur(0.5px);
}
.landing-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(10,147,150,0.7) 60%, rgba(1,76,78,0.32) 100%);
  z-index: 2;
  pointer-events: none;
}
.landing-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3.5rem 1.5rem 3rem 1.5rem;
}
.landing-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.landing-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.landing-hero-cta {
  display: inline-block;
  background: #f6e9c6;
  color: #1a2b2b;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.landing-hero-cta:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.04);
}
.landing-hero-qr {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0.4rem;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0 0 0;
}
.landing-hero-qr img {
  width: 150px;
  height: 150px;
  border-radius: 0.4rem;
}
@media (max-width: 1024px) {
  .landing-hero-visual {
    min-height: 220px;
    border-radius: 1.2rem;
  }
}
@media (max-width: 700px) {
  .landing-hero-visual {
    min-height: 120px;
    border-radius: 0.7rem;
    margin-top: 28px;
    margin-bottom: 1.2rem;
  }
  .landing-hero-content {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
  }
  .landing-hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .landing-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }
  .landing-hero-cta {
    font-size: 0.95rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.7rem;
  }
  .landing-hero-qr {
    width: 70px;
    height: 70px;
    padding: 0.2rem;
    margin: 0.7rem auto 0.7rem auto;
  }
  .landing-hero-qr img {
    width: 70px;
    height: 70px;
  }
}

