/* ==========================================================================
   Over Blue Gusto Restaurant - Custom Redesigned Home Page Sections Stylesheet
   ========================================================================== */

/* About Section Scoped Styles */
.ob-about-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-about-title {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--Neon);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}
.ob-about-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--Neon);
    transform: translateY(-50%);
}
.ob-about-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.ob-about-text {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.ob-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(229, 184, 66, 0.15);
    transition: all 0.5s ease;
}
.ob-img-wrapper:hover {
    border-color: var(--Neon);
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(229, 184, 66, 0.1);
}
.ob-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ob-img-wrapper:hover img {
    transform: scale(1.05);
}
.ob-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(12, 21, 36, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(229, 184, 66, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-width: 280px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}
.ob-floating-badge:hover {
    background: rgba(12, 21, 36, 0.95);
    border-color: var(--Neon);
}
.ob-floating-badge .quote-text {
    color: #ffffff;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}
.ob-floating-badge .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ob-floating-badge .author-name {
    color: var(--Neon);
    font-weight: 700;
    font-size: 14px;
}
.ob-stat-medallion {
    background: linear-gradient(135deg, rgba(229, 184, 66, 0.15) 0%, rgba(139, 108, 55, 0.05) 100%);
    border: 1px solid rgba(229, 184, 66, 0.25);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}
.ob-stat-medallion:hover {
    border-color: var(--Neon);
    background: linear-gradient(135deg, rgba(229, 184, 66, 0.2) 0%, rgba(139, 108, 55, 0.1) 100%);
    transform: translateX(5px);
}
.ob-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--Neon);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 10px rgba(229, 184, 66, 0.2);
}
.ob-stat-text {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ob-bot-quote {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    border-left: 3px solid var(--Neon);
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Services Section Scoped Styles */
.ob-services-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-service-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ob-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--Neon), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.ob-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 184, 66, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 184, 66, 0.08);
}
.ob-service-card:hover::before {
    opacity: 1;
}
.ob-service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.ob-service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ob-service-card:hover .ob-service-img-wrapper img {
    transform: scale(1.08);
}
.ob-service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(12, 21, 36, 0.9);
    border: 1px solid var(--Neon);
    color: var(--Neon);
    font-size: 14px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.ob-service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ob-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.ob-service-card:hover .ob-service-title {
    color: var(--Neon);
}
.ob-service-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.ob-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}
.ob-service-feature-item {
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ob-service-feature-item::before {
    content: '✓';
    color: var(--Neon);
    font-weight: bold;
}
.ob-service-btn {
    color: var(--Neon);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s;
    text-decoration: none;
}
.ob-service-card:hover .ob-service-btn {
    gap: 12px;
    color: #ffffff;
}

/* Why Choose Us Section Scoped Styles */
.ob-choose-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-choose-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(229, 184, 66, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}
.ob-choose-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.ob-choose-img-box:hover img {
    transform: scale(1.03);
}
.ob-choose-img-box:hover {
    border-color: var(--Neon);
    box-shadow: 0 30px 60px rgba(229, 184, 66, 0.1);
}
.ob-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .ob-choose-grid {
        grid-template-columns: 1fr;
    }
}
.ob-feature-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none !important;
}
.ob-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 100% 100%, rgba(229, 184, 66, 0.15), transparent 70%);
    transition: all 0.4s;
}
.ob-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 184, 66, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background: rgba(21, 32, 57, 0.55);
}
.ob-feature-card:hover::after {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(229, 184, 66, 0.05), transparent 70%);
}
.ob-feature-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid rgba(229, 184, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.ob-feature-card:hover .ob-feature-icon-wrapper {
    background: var(--Neon);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 15px rgba(229,184,66,0.3);
}
.ob-feature-icon-wrapper i {
    font-size: 22px;
    color: var(--Neon);
    transition: color 0.4s;
}
.ob-feature-card:hover .ob-feature-icon-wrapper i {
    color: #000000;
}
.ob-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-transform: uppercase;
    transition: color 0.3s;
}
.ob-feature-card:hover .ob-feature-title {
    color: var(--Neon);
}
.ob-feature-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Counters/Funfact Section Scoped Styles */
.ob-funfact-section {
    padding: 120px 0;
    color: #ffffff;
}
.ob-funfact-box {
    position: relative;
    z-index: 5;
    background: rgba(12, 21, 36, 0.7);
    border: 1px solid rgba(229, 184, 66, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.ob-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}
@media (max-width: 768px) {
    .ob-fact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.ob-fact-item {
    position: relative;
    padding: 10px;
    transition: transform 0.3s;
}
.ob-fact-item:hover {
    transform: translateY(-5px);
}
.ob-fact-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--Neon);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px rgba(229, 184, 66, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ob-fact-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbd5e1;
    font-weight: 600;
}
.ob-fact-divider {
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(229, 184, 66, 0.2);
}
@media (max-width: 768px) {
    .ob-fact-divider {
        display: none;
    }
    .ob-fact-item:not(:last-child)::after {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background: rgba(229, 184, 66, 0.2);
        margin: 30px auto 0 auto;
    }
}

/* Team Section Scoped Styles */
.ob-team-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-team-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}
.ob-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 184, 66, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 184, 66, 0.05);
}
.ob-team-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.ob-team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ob-team-card:hover .ob-team-img-wrapper img {
    transform: scale(1.05);
}
.ob-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(8, 15, 30, 0.9) 0%, rgba(8, 15, 30, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    z-index: 2;
}
.ob-team-card:hover .ob-team-overlay {
    opacity: 1;
}
.ob-team-socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ob-team-card:hover .ob-team-socials {
    transform: translateY(0);
}
.ob-team-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none !important;
}
.ob-team-social-link:hover {
    background: var(--Neon);
    border-color: var(--Neon);
    color: #000000;
    box-shadow: 0 0 10px rgba(229,184,66,0.5);
}
.ob-team-info {
    padding: 25px;
}
.ob-team-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}
.ob-team-card:hover .ob-team-name {
    color: var(--Neon);
}
.ob-team-role {
    font-size: 13px;
    color: var(--Neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Pricing Section Scoped Styles */
.ob-pricing-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-pricing-switch-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}
.ob-pricing-switch-label {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.3s;
}
.ob-pricing-switch-label.active {
    color: var(--Neon);
}
.ob-pricing-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    margin-bottom: 0;
}
.ob-pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.ob-pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}
.ob-pricing-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .ob-pricing-slider {
    background-color: var(--Neon);
}
input:checked + .ob-pricing-slider:before {
    transform: translateX(22px);
}
.ob-pricing-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.ob-pricing-card.recommended {
    border-color: var(--Neon);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 25px 50px rgba(229, 184, 66, 0.15);
}
.ob-pricing-card.recommended::before {
    content: 'POPÜLER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--Neon);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.ob-pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--Neon);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 184, 66, 0.08);
}
.ob-pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid rgba(229, 184, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.ob-pricing-card:hover .ob-pricing-icon {
    background: var(--Neon);
}
.ob-pricing-card:hover .ob-pricing-icon svg path {
    fill: #000000;
}
.ob-pricing-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.ob-pricing-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.ob-pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 30px;
}
.ob-pricing-amount span.period {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
}
.ob-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.ob-pricing-feature-item {
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ob-pricing-feature-item::before {
    content: '✓';
    color: var(--Neon);
    font-weight: bold;
}
.ob-pricing-btn {
    background: transparent;
    border: 1px solid rgba(229, 184, 66, 0.5);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none !important;
}
.ob-pricing-card:hover .ob-pricing-btn,
.ob-pricing-card.recommended .ob-pricing-btn {
    background: var(--Neon);
    border-color: var(--Neon);
    color: #000000;
    box-shadow: 0 10px 20px rgba(229, 184, 66, 0.2);
}

/* Testimonials Section Scoped Styles */
.ob-testi-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-testi-wrap {
    position: relative;
    z-index: 5;
}
.ob-testi-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
}
@media (max-width: 768px) {
    .ob-testi-card {
        padding: 30px 20px;
    }
}
.ob-testi-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--Neon);
    box-shadow: 0 10px 25px rgba(229, 184, 66, 0.2);
    margin: 0 auto 25px auto;
}
.ob-testi-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ob-testi-quote-icon {
    font-size: 40px;
    color: var(--Neon);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}
.ob-testi-desc {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 30px;
}
.ob-testi-stars {
    color: var(--Neon);
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}
.ob-testi-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}
.ob-testi-role {
    font-size: 13px;
    color: var(--Neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.ob-testi-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.ob-testi-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.ob-testi-nav-btn:hover {
    background: var(--Neon);
    border-color: var(--Neon);
    color: #000000;
    box-shadow: 0 0 15px rgba(229, 184, 66, 0.3);
}

/* Booking Section Scoped Styles - V2 VIP Table Reservation Ticket */
.ob-booking-section {
    padding: 120px 0;
    color: #ffffff;
    position: relative;
}
.ob-booking-ticket {
    position: relative;
    z-index: 5;
    background: #060b13;
    border: 2px solid var(--Neon);
    outline: 1px solid rgba(229, 184, 66, 0.4);
    outline-offset: 5px;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 30px rgba(229, 184, 66, 0.15);
    text-align: center;
}
@media (max-width: 767px) {
    .ob-booking-ticket {
        padding: 40px 25px;
    }
}
.ob-booking-ticket-header {
    border-bottom: 1px dashed rgba(229, 184, 66, 0.2);
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.ob-booking-ticket-badge {
    display: inline-block;
    border: 1px solid var(--Neon);
    padding: 6px 16px;
    border-radius: 4px;
    color: var(--Neon);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ob-booking-input {
    width: 100%;
    background: rgba(12, 21, 36, 0.6) !important;
    border: 1px solid rgba(229, 184, 66, 0.2) !important;
    border-radius: 8px !important;
    padding: 16px 20px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    margin-bottom: 25px;
}
.ob-booking-input:focus {
    border-color: var(--Neon) !important;
    box-shadow: 0 0 15px rgba(229, 184, 66, 0.25) !important;
    background: #0c1524 !important;
    outline: none !important;
}
.ob-booking-input::placeholder {
    color: #64748b !important;
}
.ob-booking-textarea {
    height: 120px;
    resize: none;
}
.ob-booking-btn {
    background: var(--Neon);
    border: 1px solid var(--Neon);
    color: #000000;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(229, 184, 66, 0.2);
    cursor: pointer;
}
.ob-booking-btn:hover {
    background: transparent;
    color: var(--Neon);
    box-shadow: 0 15px 35px rgba(229, 184, 66, 0.35);
}
.ob-member-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.ob-member-avatar-group {
    display: flex;
    align-items: center;
}
.ob-member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    object-fit: cover;
    margin-left: -12px;
}
.ob-member-avatar:first-child {
    margin-left: 0;
}
.ob-member-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--Neon);
    border: 2px solid #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
}

/* News Section Scoped Styles */
.ob-news-section {
    padding: 100px 0;
    color: #ffffff;
}
.ob-news-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ob-news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 184, 66, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 184, 66, 0.05);
}
.ob-news-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.ob-news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ob-news-card:hover .ob-news-img-wrapper img {
    transform: scale(1.08);
}
.ob-news-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(12, 21, 36, 0.9);
    border: 1px solid var(--Neon);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 55px;
}
.ob-news-date-badge span.day {
    font-size: 18px;
    font-weight: 800;
    color: var(--Neon);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}
.ob-news-date-badge span.month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 3px;
}
.ob-news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ob-news-meta {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}
.ob-news-meta a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.ob-news-meta a:hover {
    color: var(--Neon);
}
.ob-news-title-link {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}
.ob-news-card:hover .ob-news-title-link {
    color: var(--Neon);
}
.ob-news-more-btn {
    color: var(--Neon);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s;
    text-decoration: none !important;
}
.ob-news-card:hover .ob-news-more-btn {
    gap: 12px;
    color: #ffffff;
}

/* Hero Section Scoped Styles */
.ob-hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #020617;
}
.ob-hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.ob-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ob-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(8, 15, 30, 0.4) 0%, rgba(6, 11, 19, 0.9) 100%);
}
.ob-hero-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 30rem);
    font-weight: 900;
    letter-spacing: 15px;
    color: rgba(229, 184, 66, 0.03);
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    text-shadow: 0 0 40px rgba(229, 184, 66, 0.05);
}
.ob-hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    padding-top: 80px; /* offset header */
}
.ob-hero-content-box {
    border: 1px solid rgba(229, 184, 66, 0.15);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 991px) {
    .ob-hero-content-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 25px;
        margin: 0 15px;
    }
}
.ob-hero-left {
    flex: 1;
}
.ob-hero-right {
    flex: 1;
}
.ob-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -1px;
}
.ob-hero-title span {
    color: var(--Neon);
    display: block;
}
.ob-hero-desc {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.ob-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--Neon);
    border: 1px solid var(--Neon);
    color: #000000;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(229, 184, 66, 0.2);
}
.ob-hero-btn:hover {
    background: transparent;
    color: var(--Neon);
    box-shadow: 0 15px 30px rgba(229, 184, 66, 0.3);
}

