:root {
    --bs-font-sans-serif: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-lighter: #334155;
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --teal-light: #ccfbf1;
    --teal-hover: #0f766e;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.display-1 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
}

.fw-bold,
.fw-semibold {
    font-family: var(--font-heading);
}

body {
    font-family: var(--bs-font-sans-serif);
    color: #334155;
    overflow-x: hidden;
}


html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    /* Helps contain absolute elements */
}

body {
    font-family: var(--bs-font-sans-serif);
    color: #334155;
    /* overflow-x: hidden; <--- Moved up to shared rule */
}

.deco-box-top {
    /* ... */
    left: -20px;
    /* Pushes out left */
}

.deco-box-bottom {
    /* ... */
    right: -20px;
    /* Pushes out right -> Causes scrollbar */
}

@media (max-width: 992px) {

    #chat-widget-container {
        bottom: 5px !important;
    }

    #chat-window {
        position: absolute;
        bottom: 55px !important;
        right: 0;
        width: 480px !important;
        max-height: 250px !important;
        display: flex;
        flex-direction: column;
        border-radius: 1rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        background: #fff;
    }

    /* Make this scroll */
    .chat-body {
        flex: 1;
        overflow-y: auto;
        padding: 10px;
    }

    /* Input area fixed at bottom */
    .chat-input {
        border-top: 1px solid #ddd;
        padding: 8px;
    }



    html,
    body {
        width: 100%;
        overflow-x: hidden !important;
    }

    /* Ensures hero section doesn't force width */
    .hero-section,
    .hero-overlay {
        width: 100%;
        max-width: 100vw;
    }
}

/* Color Overrides */
.text-navy {
    color: var(--navy) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-navy-subtle {
    background-color: #f1f5f9 !important;
}

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

.bg-navy-lighter {
    background-color: var(--navy-lighter) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.bg-teal-subtle {
    background-color: var(--teal-light) !important;
}

.btn-teal {
    background-color: var(--teal);
    color: white;
    border: 1px solid var(--teal);
    transition: all 0.3s ease;
}

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

.btn-outline-navy {
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: white;
}

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

.btn-navy:hover {
    background-color: var(--navy-light);
    color: white;
}

/* Scroll to Top Button */
.btn-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--teal);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background-color: var(--teal-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-hide {
    opacity: 0;
    visibility: hidden;
}

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand {
    color: var(--navy);
}

.navbar.scrolled .nav-link {
    color: #475569;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--teal);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('../images/Gallery1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 1;
}

/* Scroll Mouse Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* Utils */
.py-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.ls-2 {
    letter-spacing: 2px;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.hover-text-white:hover {
    color: white !important;
}

.hover-teal:hover {
    color: var(--teal) !important;
}

/* About Deco */
.deco-box {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 0;
}

.deco-box-top {
    top: -20px;
    left: -20px;
    border-top-left-radius: 2rem;
}

.deco-box-bottom {
    bottom: -20px;
    right: -20px;
    border-bottom-right-radius: 2rem;
}

/* Amenities */
.amenity-card {
    transition: all 0.3s;
}

.amenity-card:hover {
    background-color: var(--navy-light);
    transform: scale(1.05);
}

/* Pricing */
.transform-scale-sm {
    transform: scale(1.03);
}

/* Gallery */
.gallery-item {
    position: relative;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Footer Redesign */
.footer-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.footer-brand h3 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--teal);
    border-radius: 2px;
}

.footer-link {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--teal) !important;
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) rotate(5deg);
    background-color: var(--teal-hover) !important;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    border-color: var(--teal);
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Chat Widget */
#chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}

#chat-toggle-btn {
    width: 50px;
    height: 50px;
    color: white;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

#chat-toggle-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

#chat-window {
    position: absolute;
    bottom: 65px;
    right: 0;
    width: 380px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#chat-messages {
    flex: 1;
    min-height: 300px;
    max-height: 400px;
}

#chat-input {
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    background-color: #0f172a !important;
    color: #fff;
}

#chat-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

@media (max-width: 576px) {
    #chat-window {
        width: 320px;
        right: 0;
        bottom: 70px;
    }

    .btn-scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Custom scrollbar for chat */
#chat-messages::-webkit-scrollbar {
    width: 6px;
}

#chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}

/* Quick response buttons */
.btn-outline-teal {
    color: var(--teal);
    border-color: var(--teal);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2b3c 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Gallery1.jpeg');
    opacity: 0.1;
}

/* FAQ Styles */
.py-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {


    .py-section {
        padding: 4rem 0;
    }
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    background-color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--teal);
}

.faq-accordion .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230dcaf0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: #555;
    line-height: 1.7;
}

.faq-category {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

input.form-control::placeholder {
    color: #fff;
}

/* Culture Page Specific Styles */
.py-section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .py-section {
        padding: 4rem 0;
    }
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 202, 240, 0.1);
    border-color: var(--teal-light);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Team Member Cards */
.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.team-social {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--teal-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--teal-light);
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, var(--teal-light) 0%, #d6f2f8 100%);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.quote-block:before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-size: 12rem;
    color: var(--teal);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Stats */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.1);
}

/* Community Gallery */
.community-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 70px !important;
    }

    .navbar-collapse {
        background-color: #212b3b;
        padding: 10px;
        border-radius: 25px;
    }

    .mt-5 {
        margin-top: 1rem !important;
    }

    .community-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .community-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.blog-hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url('../images/Hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.blog-section {
    padding: 80px 0;
}

.blog-search {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 15px 20px 15px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    margin-bottom: 30px;
}

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

.blog-card.featured {
    border: 2px solid var(--teal);
}

.blog-image {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--teal);
}

.blog-category {
    background: var(--teal-light);
    color: var(--teal);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: var(--teal);
    color: white;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--teal);
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--teal-dark);
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--teal);
    transform: translateX(5px);
}

.category-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-link:hover .category-count {
    background: var(--teal);
    color: white;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--teal);
}

.recent-post-date {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    border-radius: 16px;
    padding: 30px;
}

.newsletter-widget .widget-title {
    color: white;
}

.newsletter-widget .widget-title::after {
    background: var(--teal);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    /* margin-bottom: 15px; */
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    margin: 0 5px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.blog-article {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #64748b;
    margin-bottom: 30px;
}

.article-content {
    line-height: 1.8;
    color: #334155;
    font-size: 1.1rem;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 20px;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content blockquote {
    border-left: 4px solid var(--teal);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.6;
}

.article-content img {
    /* width: 100%; */
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    overflow-x: auto;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

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

.comments-section {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comment-form .form-control,
.comment-form textarea {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment-form .form-control:focus,
.comment-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

@media (max-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 760px !important;
    }

    .blog-article {
        padding: 30px;
    }

    .article-title {
        font-size: 2rem;
    }

    .comments-section {
        padding: 30px;
    }

    .blog-content {
        padding: 20px;
    }
}

.article-hero {
    height: 70vh;
    background-image: url('../images/Gallery1.jpeg');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.article-section {
    padding: 80px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 50px;
}

.article-category {
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-hero .article-title {
    color: #fff;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    color: #15b8a5;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--teal);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

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

.author-bio {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: 40px 0 20px;
}

.article-body p {
    margin-bottom: 30px;
}

.article-body p.lead {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 500;
}

.article-body blockquote {
    border-left: 4px solid var(--teal);
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.7;
}

.article-body img {
    width: 100%;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: -30px;
    margin-bottom: 40px;
    font-style: italic;
}

.article-body ul,
.article-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
    color: #334155;
}

.article-body li::marker {
    color: var(--teal);
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    overflow-x: auto;
    position: relative;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.copy-code {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #94a3b8;
    padding: 5px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-code:hover {
    background: var(--teal);
    color: white;
}

.key-takeaways {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-left: 4px solid var(--teal);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.key-takeaways h3 {
    color: var(--teal);
    margin-top: 0;
}

.key-takeaways li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.key-takeaways li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f1f5f9;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.article-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 50px;
}

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

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.link {
    background: var(--teal);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 12px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.action-btn.liked {
    border-color: var(--teal);
    background: var(--teal);
    color: white;
}

.comments-section {
    margin-top: 80px;
}

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

.comment-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.comment-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

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

.form-control,
textarea {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.comment {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

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

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    /* width: 50px; */
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-meta h5 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.comment-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.comment-content {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-action {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: var(--teal);
}

.comment.reply {
    margin-left: 60px;
    margin-top: 20px;
    background: #f8fafc;
}

.related-articles {
    margin-top: 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

.article-card-category {
    background: var(--teal-light);
    color: var(--teal);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.article-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--teal);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--navy);
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: var(--teal);
    width: 0%;
    transition: width 0.3s ease;
}

.table-of-contents {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    position: sticky;
    top: 100px;
}

.toc-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.toc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

.toc-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-item a:hover {
    color: var(--teal);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }

    .article-body h2 {
        font-size: 1.8rem;
    }

    .article-body h3 {
        font-size: 1.3rem;
    }

    .article-actions {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-share {
        justify-content: center;
    }

    .comment.reply {
        margin-left: 30px;
    }

    .table-of-contents {
        position: static;
    }
}

.rounded-circle {
    border-radius: 20% !important;
}

.gallery-hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url('../images/Gallery1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    margin: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    background: #f8fafc;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-category {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-title {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.view-more-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.view-more-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px 0;
    margin-left: 20px;
    margin-right: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.video-section {
    margin: 80px 0;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--teal-dark);
}

.tour-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
}

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

.tour-info {
    padding: 25px;
}

.tour-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.tour-time {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-body {
    padding: 0;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
}

.modal-category {
    background: var(--teal);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.modal-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.modal-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.modal-feature {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 500;
}

.modal-feature i {
    color: var(--teal);
}

.close-modal {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--teal);
    color: white;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-nav:hover {
    background: var(--teal);
    color: white;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.gallery-empty {
    text-align: center;
    padding: 100px 20px;
    display: none;
}

.gallery-empty i {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 250px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .video-container {
        height: 300px;
    }

    .modal-content {
        max-height: 80vh;
    }

    .modal-body {
        max-height: calc(80vh - 80px);
    }
}

.policy-hero {
    height: 50vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url('../images/Gallery1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.policy-section {
    padding: 80px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    margin-bottom: 50px;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.policy-updated {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 10px;
}

.policy-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--teal);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.policy-content {
    line-height: 1.8;
    color: #334155;
    font-size: 1.1rem;
}

.policy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.policy-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 40px 0 20px;
}

.policy-content p {
    margin-bottom: 25px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #334155;
}

.policy-content li::marker {
    color: var(--teal);
}

.policy-note {
    background: var(--teal-light);
    border-left: 4px solid var(--teal);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-table th {
    background: var(--navy);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.policy-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
}

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

.policy-table tr:hover {
    background: #f8fafc;
}

.info-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-title i {
    color: var(--teal);
}

.contact-info {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
}

.contact-info h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 5px;
}

.toc-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    position: sticky;
    top: 100px;
}

.toc-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc-item {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.toc-item::before {
    counter-increment: toc-counter;
    content: counter(toc-counter) ".";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

.toc-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-item a:hover {
    color: var(--teal);
}

.policy-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
}

.action-btn {
    padding: 12px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.download-btn {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.download-btn:hover {
    background: var(--teal-dark);
    color: white;
    border-color: var(--teal-dark);
}

.legal-consent {
    background: var(--teal-light);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.consent-text {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0;
}

.definition-list {
    margin: 30px 0;
}

.definition-term {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.definition-desc {
    color: #475569;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.quick-link {
    background: #f1f5f9;
    color: #475569;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.policy-badge {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
    }

    .policy-actions {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }

    .toc-container {
        position: static;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
    }
}

.terms-hero {
    height: 50vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url('../images/Gallery1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.terms-section {
    padding: 80px 0;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-header {
    margin-bottom: 50px;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.terms-updated {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 10px;
}

.terms-agreement {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.agreement-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
}

.terms-content {
    line-height: 1.8;
    color: #334155;
    font-size: 1.1rem;
}

.terms-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.terms-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 40px 0 20px;
}

.terms-content p {
    margin-bottom: 25px;
}

.terms-content ul,
.terms-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.terms-content li {
    margin-bottom: 10px;
    color: #334155;
}

.terms-content li::marker {
    color: var(--teal);
}

.terms-note {
    background: var(--teal-light);
    border-left: 4px solid var(--teal);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.legal-definition {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.definition-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.definition-title i {
    color: var(--teal);
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.terms-table th {
    background: var(--navy);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.terms-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
}

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

.terms-table tr:hover {
    background: #f8fafc;
}

.pricing-terms {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
}

.pricing-terms h3 {
    color: white;
    margin-bottom: 25px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
}

.toc-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    position: sticky;
    top: 100px;
}

.toc-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc-item {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.toc-item::before {
    counter-increment: toc-counter;
    content: counter(toc-counter) ".";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

.toc-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-item a:hover {
    color: var(--teal);
}

.terms-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
}

.action-btn {
    padding: 12px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.accept-btn {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.accept-btn:hover {
    background: var(--teal-dark);
    color: white;
    border-color: var(--teal-dark);
}

.clause-box {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    background: white;
}

.clause-number {
    background: var(--teal);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.clause-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
}

.important-notice {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.notice-title {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dispute-resolution {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.contact-section {
    background: var(--navy);
    color: white;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 5px;
}

.terms-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.quick-link {
    background: #f1f5f9;
    color: #475569;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.terms-badge {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.checkbox-label {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 2rem;
    }

    .terms-section-title {
        font-size: 1.5rem;
    }

    .terms-actions {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }

    .toc-container {
        position: static;
    }

    .terms-table {
        display: block;
        overflow-x: auto;
    }
}

.booking-section {
    padding: 100px 0;
}

.booking-process {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.plan-card {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.plan-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}

.plan-card.selected {
    border-color: var(--teal);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.02) 100%);
}

.plan-card.selected .select-plan-btn {
    background: var(--teal);
    color: white;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--teal);
    margin-right: 10px;
}

.calendar-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.fc {
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.fc-daygrid-day {
    cursor: pointer;
    transition: all 0.2s ease;
}

.fc-daygrid-day:hover {
    background: var(--teal-light);
}

.fc-daygrid-day.fc-day-today {
    background: rgba(20, 184, 166, 0.1);
}

.fc-daygrid-day.selected {
    background: var(--teal);
    color: white;
}

.time-slot {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.time-slot:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

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

.time-slot.booked {
    background: #f8f9fa;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.booking-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-item.total {
    border-top: 2px solid var(--teal);
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--navy);
}

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

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: #64748b;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--teal);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-circle {
    background: var(--teal);
    color: white;
}

.step.completed .step-circle i {
    display: block;
}

.step.completed .step-circle span {
    display: none;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.availability-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 10px;
}

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

.limited {
    background: #fef3c7;
    color: #92400e;
}

.booking-success {
    text-align: center;
    padding: 60px 40px;
    display: none;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.desk-preview {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.desk-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.desk-preview:hover img {
    transform: scale(1.05);
}

.desk-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.desk-capacity {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.capacity-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.capacity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.capacity-dot.filled {
    background: var(--teal);
}

@media (max-width: 768px) {
    .booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .booking-steps::before {
        display: none;
    }

    .step {
        flex: none;
        width: 45%;
    }

    .calendar-container {
        padding: 15px;
    }

    .booking-process {
        padding: 25px;
    }
}

.desk-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(32, 201, 151, 0.1);
    border: 2px solid rgba(32, 201, 151, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.locker-badge {
    background: linear-gradient(135deg, #20c997, #17a589);
    color: white;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
}

.desk-comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #0d2436;
    border-bottom: 2px solid #dee2e6;
}

.desk-comparison-table td {
    padding: 1rem;
    vertical-align: middle;
    padding-left: 4rem;
}

.membership-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.membership-card.popular {
    border-color: #20c997;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.desk-layout-item {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.desk-layout-item:hover {
    background: white;
    border-color: #20c997;
    transform: translateY(-3px);
}

.community-highlight {
    background: linear-gradient(135deg, #20c99715 0%, #0d243615 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px dashed #20c997;
}

.capacity-badge {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.3);
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.floorplan-container {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.floorplan-container:hover {
    transform: translateY(-5px);
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #0d2436;
}

.comparison-table td {
    vertical-align: middle;
}

.office-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.office-card:hover {
    border-color: #20c997;
    transform: translateY(-5px);
}

.size-badge {
    background: linear-gradient(135deg, #20c997, #17a589);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.bg-gradient-teal {
    background-color: #1e293b;
}


.flexibility-badge {
    background: linear-gradient(135deg, #20c997, #17a589);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.plan-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.plan-card.featured {
    border-color: #20c997;
    position: relative;
}

.featured-badge {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.usage-card {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.usage-card:hover {
    background: white;
    border-color: #20c997;
    transform: translateY(-3px);
}

.workflow-step {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #20c997;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.availability-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.availability-dot.available {
    background-color: #28a745;
    animation: pulse 2s infinite;
}

.availability-dot.limited {
    background-color: #ffc107;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.area-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.spot-count {
    font-size: 2rem;
    font-weight: bold;
    color: #20c997;
}


.flexibility-badge {
    background: linear-gradient(135deg, #20c997, #17a589);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.plan-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.plan-card.featured {
    border-color: #20c997;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.usage-card {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.usage-card:hover {
    background: white;
    border-color: #20c997;
    transform: translateY(-3px);
}

.workflow-step {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #20c997;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.availability-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.availability-dot.available {
    background-color: #28a745;
    animation: pulse 2s infinite;
}

.availability-dot.limited {
    background-color: #ffc107;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.area-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.spot-count {
    font-size: 2rem;
    font-weight: bold;
    color: #20c997;
}

.room-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.capacity-badge {
    background: linear-gradient(135deg, #20c997, #17a589);
    color: white;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
}

.equipment-item {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking-step {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.booking-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;

    left: 0px;
    width: 35px;
    height: 35px;
    background: #20c997;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.room-size-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(32, 201, 151, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #20c997;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: #20c997;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.availability-dot.available {
    background-color: #28a745;
}

.availability-dot.booked {
    background-color: #dc3545;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.room-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

}

.feature-highlight {
    background: linear-gradient(135deg, #20c99715 0%, #0d243615 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px dashed #20c997;
}

.rounded-5 {
    border-radius: 18px 100px 10px 100px !important;
}

.rounded-3 {
    border-radius: 18px 80px 10px 80px !important;
}

.rounded-4 {
    border-radius: 18px 80px 10px 60px !important;
}

.firstday {
    text-align: left;
}

::-webkit-input-placeholder {
    color: #888;
    /* Chrome, Safari, Opera */
}

:-ms-input-placeholder {
    color: #888;
}

#articleList .author-avatar {
    width: 80px;
    height: 80px;
}

#articleList .blog-image {
    height: auto;
}

.action-btn-blog {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}