/* Custom Redesigned Sections CSS - Over Blue Resort (Theme 5) */

/* ==========================================================================
   Section: service.blade.php
   ========================================================================== */
/* Premium Horizontal Flex Accordion Styles */
.premium-accordion-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 540px;
    margin: 50px auto 30px auto;
}

.premium-accordion-item {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.14);
    background: rgba(15, 42, 58, 0.4);
    display: flex;
    transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.premium-accordion-item .item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: saturate(0.65) brightness(0.35);
    transition: all 0.65s ease;
}

.premium-accordion-item .item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 42, 58, 0.95) 0%, 
        rgba(15, 42, 58, 0.7) 45%, 
        rgba(15, 118, 110, 0.85) 100%
    );
    z-index: 2;
    transition: all 0.65s ease;
}

/* Hover/Active states */
.premium-accordion-wrapper:hover .premium-accordion-item {
    flex: 0.75;
}

.premium-accordion-wrapper .premium-accordion-item:hover,
.premium-accordion-item.active {
    flex: 3.2;
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.35);
}

.premium-accordion-wrapper .premium-accordion-item:hover .item-bg,
.premium-accordion-item.active .item-bg {
    filter: saturate(1.1) brightness(0.7) scale(1.05);
}

.premium-accordion-wrapper .premium-accordion-item:hover .item-overlay,
.premium-accordion-item.active .item-overlay {
    background: linear-gradient(135deg, 
        rgba(15, 42, 58, 0.6) 0%, 
        rgba(6, 182, 212, 0.4) 50%, 
        rgba(15, 118, 110, 0.95) 100%
    );
}

/* Inactive vertical header */
.premium-accordion-item .item-header {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 15px;
    z-index: 3;
    pointer-events: none;
    transition: all 0.5s ease;
}

.premium-accordion-item .item-header .item-number {
    font-size: 30px;
    font-weight: 800;
    color: #67e8f9;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(103, 232, 249, 0.35);
}

.premium-accordion-item .item-header .item-vertical-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    margin: 0;
}

/* Hide header when active */
.premium-accordion-wrapper .premium-accordion-item:hover .item-header,
.premium-accordion-item.active .item-header {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* Active body details */
.premium-accordion-item .item-content-body {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 50px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

/* Fade in content on active */
.premium-accordion-wrapper .premium-accordion-item:hover .item-content-body,
.premium-accordion-item.active .item-content-body {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0.15s;
}

.premium-accordion-item .item-content-body .item-num-highlight {
    font-size: 50px;
    font-weight: 800;
    color: rgba(103, 232, 249, 0.18);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.premium-accordion-item .item-content-body .item-title-active {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.premium-accordion-item .item-content-body .item-title-active a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-accordion-item .item-content-body .item-title-active a:hover {
    color: #67e8f9;
}

.premium-accordion-item .item-content-body .item-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 500px;
    margin-bottom: 25px;
}

/* Features grid list */
.premium-accordion-item .item-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    width: 100%;
    max-width: 550px;
}

.premium-accordion-item .item-features-list li {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-accordion-item .item-features-list li i {
    color: #67e8f9;
    font-size: 11px;
}

/* Action button */
.premium-accordion-item .premium-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f2a3a !important;
    background: #67e8f9;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(103, 232, 249, 0.25);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-accordion-item .premium-action-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.premium-accordion-item .premium-action-btn:hover {
    background: #ffffff;
    color: #0f2a3a !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.premium-accordion-item .premium-action-btn:hover svg {
    transform: translateX(4px);
}

/* Responsiveness and mobile fallback */
@media (max-width: 990px) {
    .premium-accordion-wrapper {
        flex-direction: column;
        height: auto;
        gap: 15px;
        margin: 30px auto;
    }
    
    .premium-accordion-item {
        width: 100%;
        height: 100px;
        flex: none !important;
        border-radius: 20px;
    }
    
    .premium-accordion-item .item-header {
        flex-direction: row;
        align-items: center;
        padding: 20px 30px;
        justify-content: flex-start;
        gap: 20px;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }
    
    .premium-accordion-item .item-header .item-number {
        margin-bottom: 0;
        font-size: 24px;
    }
    
    .premium-accordion-item .item-header .item-vertical-title {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        font-size: 18px;
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }
    
    .premium-accordion-item.active {
        height: 480px;
    }
    
    .premium-accordion-item.active .item-header {
        opacity: 0 !important;
        transform: translateY(-15px) !important;
        pointer-events: none;
    }
    
    .premium-accordion-item .item-content-body {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(20px);
        padding: 30px;
        justify-content: flex-end;
    }
    
    .premium-accordion-item.active .item-content-body {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .premium-accordion-item .item-content-body .item-num-highlight {
        display: none;
    }
    
    .premium-accordion-item .item-content-body .item-title-active {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .premium-accordion-item .item-content-body .item-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .premium-accordion-item .item-features-list {
        margin-bottom: 20px;
        gap: 8px 20px;
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section: funfact.blade.php
   ========================================================================== */
/* Minimalist Funfact Bar Styles */
.funfact-box-modern {
    position: relative;
    padding: 100px 80px;
    border-radius: 36px !important;
    overflow: hidden;
    margin-bottom: -121px;
    background: rgba(15, 42, 58, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    box-shadow: 0 30px 70px rgba(15, 118, 110, 0.25) !important;
}

@media (max-width: 991px) {
    .funfact-box-modern {
        padding: 70px 40px;
        margin-bottom: -60px;
    }
}

@media (max-width: 575px) {
    .funfact-box-modern {
        padding: 50px 20px;
        margin-bottom: -40px;
        border-radius: 24px !important;
    }
}

.funfact-box-modern .image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.funfact-box-modern .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(0.7);
}

.funfact-box-modern .box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 42, 58, 0.9) 0%, rgba(15, 118, 110, 0.8) 100%);
    z-index: 2;
}

.funfact-box-modern > * {
    position: relative;
    z-index: 3;
}

/* Heading */
.minimal-funfact-heading {
    text-align: center;
    margin-bottom: 60px;
}

.minimal-funfact-heading .title-badge {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.35) 0%, rgba(6, 182, 212, 0) 100%) !important;
    border: 1px solid rgba(103, 232, 249, 0.4) !important;
    color: #67e8f9 !important;
    border-radius: 100px !important;
    padding: 6px 18px !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.minimal-funfact-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .minimal-funfact-heading h2 {
        font-size: 26px;
    }
}

/* Stats Row */
.minimal-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

@media (max-width: 767px) {
    .minimal-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

/* Stat Item */
.minimal-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .minimal-stat-item {
        width: 100%;
        max-width: 280px;
    }
}

.minimal-stat-item .stat-icon-wrap {
    color: #67e8f9;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.minimal-stat-item .stat-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.minimal-stat-item:hover .stat-icon-wrap {
    transform: scale(1.18) translateY(-2px);
}

.minimal-stat-item .stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.minimal-stat-item .stat-number-wrap .number {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.minimal-stat-item .stat-number-wrap .pre {
    font-size: 30px;
    font-weight: 700;
    color: #67e8f9;
    margin-left: 2px;
}

.minimal-stat-item:hover .stat-number-wrap .number {
    color: #67e8f9;
    text-shadow: 0 0 15px rgba(103, 232, 249, 0.4);
}

/* Thin Elegant Indicator line under number */
.minimal-stat-item .stat-indicator-line {
    width: 50px;
    height: 2px;
    background: rgba(103, 232, 249, 0.25);
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.minimal-stat-item:hover .stat-indicator-line {
    width: 100px;
    background: #67e8f9;
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.8);
}

.minimal-stat-item .stat-text-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.minimal-stat-item:hover .stat-text-label {
    color: #ffffff;
}

/* Spacer for vertical layout */
.minimal-stats-row .line-divider {
    width: 1px;
    height: 100px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    align-self: center;
}

@media (max-width: 767px) {
    .minimal-stats-row .line-divider {
        display: none;
    }
}

/* Marquee wellness text bottom spacing */
.section-funfact .marquee-2 {
    margin-top: 70px;
}

/* ==========================================================================
   Section: choose-us.blade.php
   ========================================================================== */
/* Premium Redesigned Choose Us Section */
.section-choose-us {
    position: relative;
    padding: 100px 0;
}

/* Visual Sidebar Card */
.choose-visual-sidebar {
    position: sticky;
    top: 100px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.15);
    background: rgba(15, 42, 58, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.choose-visual-sidebar:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 232, 249, 0.4);
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.25);
}

.choose-visual-sidebar .sidebar-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.choose-visual-sidebar .sidebar-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.choose-visual-sidebar:hover .sidebar-image-wrap img {
    transform: scale(1.08);
}

.choose-visual-sidebar .sidebar-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 42, 58, 0) 0%, rgba(15, 42, 58, 0.8) 100%);
}

.choose-visual-sidebar .sidebar-content-glass {
    padding: 35px 30px;
    text-align: center;
}

.choose-visual-sidebar .sidebar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(103, 232, 249, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    margin-bottom: 20px;
}

.choose-visual-sidebar .sidebar-icon svg {
    width: 28px;
    height: 28px;
}

.choose-visual-sidebar .sidebar-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #67e8f9;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.choose-visual-sidebar .sidebar-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.choose-visual-sidebar .sidebar-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Feature Grid */
.choose-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

@media (max-width: 575px) {
    .choose-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Feature Card */
.choose-feature-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.12);
    background: rgba(15, 42, 58, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.choose-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.25);
    background: rgba(15, 118, 110, 0.25);
}

.choose-feature-card .card-image-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.choose-feature-card .card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.choose-feature-card:hover .card-image-bg img {
    opacity: 0.12;
    transform: scale(1.06);
}

.choose-feature-card > * {
    position: relative;
    z-index: 2;
}

/* Icon Wrap */
.choose-feature-card .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(103, 232, 249, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.choose-feature-card:hover .icon-wrap {
    background: #67e8f9;
    color: #0f2a3a;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.choose-feature-card .icon-wrap svg {
    width: 28px;
    height: 28px;
}

.choose-feature-card .icon-wrap svg path {
    fill: currentColor !important;
    transition: fill 0.3s ease;
}

/* Title & text */
.choose-feature-card .card-title {
    font-size: 20px;
    font-weight: 750;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.choose-feature-card:hover .card-title {
    color: #67e8f9;
}

.choose-feature-card .card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.choose-feature-card:hover .card-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsiveness */
@media (max-width: 991px) {
    .choose-visual-sidebar {
        position: static;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .choose-visual-sidebar .sidebar-image-wrap {
        height: 300px;
    }
}

/* ==========================================================================
   Section: our-team.blade.php
   ========================================================================== */
/* Premium Arched Portrait Cards for Our Team */
.section-our-team {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Card Container */
.modern-team-card {
    position: relative;
    background: rgba(15, 42, 58, 0.45) !important;
    border: 1px solid rgba(103, 232, 249, 0.12) !important;
    border-radius: 28px !important;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 15px;
    overflow: hidden;
}

.modern-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 232, 249, 0.4) !important;
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.25);
    background: rgba(15, 118, 110, 0.15) !important;
}

/* Arched Image Framing */
.modern-team-card .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 120px 120px 24px 24px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modern-team-card .image-wrapper img.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-team-card:hover .image-wrapper img.team-img {
    transform: scale(1.08);
}

.modern-team-card .image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 42, 58, 0) 40%, rgba(15, 42, 58, 0.85) 100%);
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.modern-team-card:hover .image-gradient-overlay {
    opacity: 0.95;
}

/* Floating Glass Social Dock */
.modern-team-card .glass-social-dock {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 42, 58, 0.85);
    border: 1px solid rgba(103, 232, 249, 0.25);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-team-card:hover .glass-social-dock {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.modern-team-card .social-dock-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(103, 232, 249, 0.1);
    color: #67e8f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.modern-team-card .social-dock-item:hover {
    background: #67e8f9;
    color: #0f2a3a;
    box-shadow: 0 0 12px rgba(103, 232, 249, 0.6);
    transform: translateY(-2px);
}

/* Card details (Typography) */
.modern-team-card .card-details {
    position: relative;
    padding: 0 10px;
}

.modern-team-card .member-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.modern-team-card:hover .member-name {
    color: #67e8f9;
}

.modern-team-card .member-role {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.modern-team-card:hover .member-role {
    color: #22d3ee;
}

/* Animated Divider */
.modern-team-card .animated-divider {
    width: 40px;
    height: 3px;
    background: #0d9488;
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.modern-team-card:hover .animated-divider {
    width: 80px;
    background: #67e8f9;
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.6);
}

/* Pagination bullet styling override */
.section-our-team .swiper-pagination-bullet {
    background: rgba(103, 232, 249, 0.2) !important;
    opacity: 1;
}

.section-our-team .swiper-pagination-bullet-active {
    background: #67e8f9 !important;
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.6);
}

/* ==========================================================================
   Section: pricing-package.blade.php
   ========================================================================== */
/* Premium Pricing Layout */
.section-pricing-package {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-pricing-package > .img-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-pricing-package > .img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-pricing-package .parallax-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(15, 42, 58, 0.45) 0%, rgba(15, 42, 58, 0.9) 100%);
    z-index: 2;
}

.section-pricing-package .heading-section {
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

.section-pricing-package .heading-section .text-color-change-white h2.text,
.section-pricing-package .heading-section h2.text {
    font-size: clamp(22px, 2.5vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* GSAP SplitText Spacing */
.word-wrapper {
    display: inline-block !important;
    margin-right: 0.28em !important;
    white-space: nowrap !important;
}
.char-wrapper {
    display: inline-block !important;
}

/* Modern Toggle Switch */
.modern-pricing-switch-wrap {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(15, 42, 58, 0.6);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 40px;
    padding: 8px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 15px;
}

.modern-pricing-switch-wrap .switch-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.modern-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    margin: 0;
    cursor: pointer;
}

.modern-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(103, 232, 249, 0.15);
    border: 1px solid rgba(103, 232, 249, 0.3);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #67e8f9;
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.8);
    transition: .4s;
    border-radius: 50%;
}

.modern-toggle input:checked + .toggle-slider {
    background-color: rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}

.modern-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
    background-color: #22d3ee;
}

.modern-pricing-switch-wrap .save-badge {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Pricing Grid & Cards */
.section-pricing-package .tf-container {
    position: relative;
    z-index: 3;
}

.pricing-card-modern {
    position: relative;
    background: rgba(15, 42, 58, 0.45) !important;
    border: 1px solid rgba(103, 232, 249, 0.12) !important;
    border-radius: 28px !important;
    padding: 40px 35px;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern .card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Glow Effect */
.pricing-card-modern .card-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(103, 232, 249, 0.12) 0%, rgba(15, 42, 58, 0) 75%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.pricing-card-modern:hover .card-glow-bg {
    opacity: 1;
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 232, 249, 0.35) !important;
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.22);
}

/* Featured card overrides */
.pricing-card-modern.featured {
    border-color: rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15);
    background: rgba(15, 42, 58, 0.65) !important;
    transform: scale(1.03);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: rgba(103, 232, 249, 0.6) !important;
    box-shadow: 0 30px 65px rgba(6, 182, 212, 0.3);
}

.pricing-card-modern.featured .card-glow-bg {
    background: radial-gradient(circle at 50% 0%, rgba(103, 232, 249, 0.2) 0%, rgba(15, 42, 58, 0) 80%);
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
    z-index: 10;
}

/* Header & Icons */
.pricing-card-modern .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(103, 232, 249, 0.1);
    color: #67e8f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.pricing-card-modern.featured .icon-container {
    background: rgba(103, 232, 249, 0.2);
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.25);
}

.pricing-card-modern:hover .icon-container {
    transform: scale(1.08) rotate(3deg);
    background: #67e8f9;
    color: #0f2a3a;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.5);
}

.pricing-card-modern .package-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.pricing-card-modern .package-summary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Pricing Display */
.pricing-card-modern .price-container {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(103, 232, 249, 0.15);
}

.pricing-card-modern .price-number {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #ffffff 0%, #a5f3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-modern:hover .price-number {
    background: linear-gradient(180deg, #ffffff 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card-modern .price-per {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Feature List */
.pricing-card-modern .features-header {
    font-size: 13px;
    font-weight: 800;
    color: #67e8f9;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-card-modern .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.pricing-card-modern .features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card-modern .features-list li svg {
    width: 16px;
    height: 16px;
    color: #22d3ee;
    flex-shrink: 0;
}

/* Actions */
.pricing-card-modern .action-wrap {
    margin-top: auto;
}

.pricing-card-modern .action-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.action-btn.btn-normal {
    background: transparent;
    border: 1px solid rgba(103, 232, 249, 0.3);
    color: #67e8f9;
}

.action-btn.btn-normal:hover {
    background: #67e8f9;
    color: #0f2a3a;
    border-color: #67e8f9;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.5);
    transform: translateY(-2px);
}

.action-btn.btn-featured {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border: 1px solid transparent;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.35);
}

.action-btn.btn-featured:hover {
    background: linear-gradient(135deg, #0f766e, #0891b2);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.55);
    transform: translateY(-2px);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .pricing-card-modern.featured {
        transform: none !important;
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-8px) !important;
    }
    
    .pricing-card-modern {
        padding: 35px 30px;
    }
}

/* ==========================================================================
   Section: testimonials.blade.php
   ========================================================================== */
/* Premium Testimonials Section */
.section-client-testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wrap-modern {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

/* Testimonial Pod Card */
.testimonial-pod-card {
    position: relative;
    background: rgba(15, 42, 58, 0.45) !important;
    border: 1px solid rgba(103, 232, 249, 0.12) !important;
    border-radius: 32px !important;
    padding: 50px 45px;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 3fr;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    margin: 15px 0;
}

/* Left Column: Rating */
.rating-badge-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid rgba(103, 232, 249, 0.15);
}

.rating-glowing-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.1);
    transition: all 0.4s ease;
}

.testimonial-pod-card:hover .rating-glowing-circle {
    border-color: rgba(103, 232, 249, 0.5);
    box-shadow: 0 0 25px rgba(103, 232, 249, 0.25);
    background: rgba(103, 232, 249, 0.15);
    transform: scale(1.05);
}

.star-icon-glow {
    color: #eab308;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.6);
}

.rating-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.review-label {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Center Column: Fluid Portrait Image */
.profile-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-cell-frame {
    position: relative;
    width: 170px;
    height: 170px;
    overflow: hidden;
    /* Morphing water puddle shape */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 2px solid rgba(103, 232, 249, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.water-cell-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-pod-card:hover .water-cell-frame {
    /* Morphed puddle shape on hover */
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    border-color: #67e8f9;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.35);
}

.testimonial-pod-card:hover .water-cell-frame img {
    transform: scale(1.08) rotate(1deg);
}

/* Right Column: Quote Content */
.quote-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars-row {
    color: #eab308;
    font-size: 14px;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars-row i {
    text-shadow: 0 0 8px rgba(234, 179, 8, 0.4);
}

.testimonial-quote {
    position: relative;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-quote .open-quote,
.testimonial-quote .close-quote {
    color: rgba(103, 232, 249, 0.4);
    font-size: 32px;
    font-weight: 800;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
}

.testimonial-quote .open-quote {
    margin-right: 5px;
}

.testimonial-quote .close-quote {
    margin-left: 5px;
}

.meta-details .client-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.testimonial-pod-card:hover .client-name {
    color: #67e8f9;
}

.meta-details .client-role {
    font-size: 13px;
    font-weight: 500;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Navigation Buttons override */
.modern-nav-controls {
    position: absolute;
    top: 50%;
    left: -25px;
    right: -25px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 1250px) {
    .modern-nav-controls {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        pointer-events: auto;
    }
}

.modern-nav-controls .arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(103, 232, 249, 0.3);
    background: rgba(15, 42, 58, 0.8);
    color: #67e8f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.modern-nav-controls .arrow-btn:hover {
    background: #67e8f9;
    color: #0f2a3a;
    border-color: #67e8f9;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.5);
    transform: scale(1.08);
}

.modern-nav-controls .arrow-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Grid styling */
@media (max-width: 991px) {
    .testimonial-pod-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .rating-badge-column {
        padding-right: 0;
        border-right: none;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(103, 232, 249, 0.15);
    }
    
    .quote-content-column {
        align-items: center;
    }
}

/* ==========================================================================
   Section: booking.blade.php
   ========================================================================== */
/* Radical Booking Capsule Design */
.section-booking {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Curved Capsule Box Container */
.booking-capsule-basin {
    position: relative;
    border-radius: 80px;
    background: rgba(7, 35, 47, 0.84);
    border: 1px solid rgba(103, 232, 249, 0.15);
    padding: 70px 80px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    z-index: 5;
}

@media (max-width: 991px) {
    .booking-capsule-basin {
        border-radius: 40px;
        padding: 50px 30px;
    }
}

/* Background overlay with image and cyan radial glow */
.capsule-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.capsule-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: saturate(0.8) contrast(1.1);
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-capsule-basin:hover .capsule-bg-img {
    transform: scale(1.08) rotate(0.5deg);
}

.capsule-cyan-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(103, 232, 249, 0.12) 0%, rgba(15, 42, 58, 0.95) 80%);
}

/* Content Columns Layer */
.capsule-content-layer {
    position: relative;
    z-index: 3;
}

.capsule-header {
    text-align: center;
    margin-bottom: 50px;
}

.capsule-header .sub-heading {
    display: inline-block;
    margin-bottom: 12px;
    color: #67e8f9;
}

.capsule-header .heading {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

@media (max-width: 767px) {
    .capsule-header .heading {
        font-size: 28px;
    }
}

/* Form Pill inputs styling */
.form-booking-capsule {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 767px) {
    .pills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.glass-pill-input {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(15, 42, 58, 0.6) !important;
    border: 1px solid rgba(103, 232, 249, 0.15) !important;
    border-radius: 30px !important;
    height: 60px;
    padding: 0 25px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-pill-input.full-width-pill {
    height: auto;
    padding: 18px 25px;
}

.glass-pill-input:hover {
    border-color: rgba(103, 232, 249, 0.35);
    background: rgba(15, 42, 58, 0.75) !important;
    box-shadow: 0 0 15px rgba(103, 232, 249, 0.1);
}

.glass-pill-input:focus-within {
    border-color: #67e8f9 !important;
    background: rgba(15, 42, 58, 0.85) !important;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.2);
}

.pill-icon {
    color: rgba(103, 232, 249, 0.65);
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.pill-icon.align-top {
    align-self: flex-start;
    margin-top: 4px;
}

.glass-pill-input:focus-within .pill-icon {
    color: #67e8f9;
}

.pill-field-group {
    position: relative;
    width: 100%;
    height: 100%;
}

.pill-input {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none !important;
    font-size: 14px !important;
    color: #ffffff !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.pill-input.textarea-field {
    height: 100px;
    resize: none;
}

/* Floating label logic */
.pill-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pill-input.textarea-field ~ .pill-label {
    top: 15px;
    transform: none;
}

/* Trigger label float on focus or filled input */
.pill-input:focus ~ .pill-label,
.pill-input:not(:placeholder-shown) ~ .pill-label {
    top: 5px;
    font-size: 11px;
    color: #67e8f9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-input:focus ~ .pill-label {
    text-shadow: 0 0 8px rgba(103, 232, 249, 0.3);
}

/* Adjust date/time fields to prevent overlapping values */
.pill-input.pill-date-time {
    color-scheme: dark;
}

.pill-input.pill-date-time::-webkit-calendar-picker-indicator {
    filter: invert(80%) sepia(30%) saturate(1500%) hue-rotate(150deg) brightness(100%) contrast(100%);
    cursor: pointer;
}

/* Submit Action Dock */
.submit-action-dock {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
    .submit-action-dock {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

.submit-dock-btn {
    position: relative;
    min-width: 260px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-dock-btn:hover {
    background: linear-gradient(135deg, #0f766e, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.55);
    transform: translateY(-2px);
}

.btn-glow-pulse {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.submit-dock-btn:hover .btn-glow-pulse {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

/* Orbital Members Widget */
.orbital-members-widget {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(15, 42, 58, 0.5);
    border: 1px solid rgba(103, 232, 249, 0.15);
    border-radius: 30px;
}

.orbit-glow-ring {
    position: absolute;
    inset: -2px;
    border: 1px solid #67e8f9;
    border-radius: 32px;
    opacity: 0.3;
    animation: rotateOrbit 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateOrbit {
    0% { transform: rotate(0deg) scaleX(1) scaleY(1); }
    50% { transform: rotate(180deg) scaleX(1.02) scaleY(0.98); }
    100% { transform: rotate(360deg) scaleX(1) scaleY(1); }
}

.avatars-overlap-orbit {
    display: flex;
    align-items: center;
}

.orbit-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0f2a3a;
    margin-left: -8px;
    transition: all 0.3s ease;
}

.orbit-avatar:first-child {
    margin-left: 0;
}

.orbit-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbit-avatar.plus-item {
    background: #67e8f9;
    color: #0f2a3a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-members-widget:hover .orbit-avatar {
    margin-left: -3px;
}

.orbital-members-widget:hover .orbit-avatar:first-child {
    margin-left: 0;
}

.orbit-badge-meta {
    display: flex;
    flex-direction: column;
}

.orbit-badge-meta .badge-accent {
    font-size: 12px;
    font-weight: 700;
    color: #67e8f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(103, 232, 249, 0.4);
}

/* Wellness Marquee capsule overrides */
.marquee-wellness-capsule {
    margin-top: 70px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-node-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.marquee-node-modern .text-light-resort {
    color: rgba(255, 255, 255, 0.9);
}

.marquee-node-modern .text-neon-resort {
    background: linear-gradient(180deg, #67e8f9 0%, #0d9488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

.marquee-node-modern .divider-dot {
    color: rgba(103, 232, 249, 0.35);
    margin: 0 10px;
}

/* ==========================================================================
   Section: Hero Slider (No Card Layout)
   ========================================================================== */
.section-hero .box-content {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    min-height: min(720px, calc(100vh - 150px));
    padding: 70px 30px !important;
    margin: 0 auto !important;
    max-width: 900px !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.section-hero .box-content::before {
    display: none !important;
}

/* Enhancing title readability and typography */
.section-hero .title {
    max-width: 860px;
    font-size: clamp(38px, 5vw, 64px) !important;
    line-height: 1.05 !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    color: #ffffff !important;
    text-shadow: 0 10px 40px rgba(15, 42, 58, 0.95), 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 40%, #67e8f9 80%, #22d3ee 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 4px !important;
}

.section-hero .box-content > .box-gradient-1 {
    display: inline-flex;
    width: auto;
    margin-bottom: 0 !important;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1.2;
}

/* Slide Details / Description text */
.section-hero .box-content p.text-2 {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8 !important;
    text-shadow: 0 3px 12px rgba(15, 42, 58, 0.9), 0 1px 3px rgba(0, 0, 0, 0.6) !important;
    max-width: 680px !important;
    margin: 0 auto 10px !important;
}

/* Badge styling */
.section-hero .pool-badge {
    background: rgba(103, 232, 249, 0.15) !important;
    border: 1px solid rgba(103, 232, 249, 0.4) !important;
    color: #67e8f9 !important;
    padding: 8px 18px !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 0 8px rgba(103, 232, 249, 0.4);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

/* Button glow effect */
.section-hero .box-content .tf-btn {
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.25) !important;
    border-radius: 12px !important;
    padding: 16px 36px !important;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.section-hero .box-content .tf-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.55) !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .section-hero .box-content {
        min-height: 560px;
        padding: 40px 20px !important;
        margin: 0 auto !important;
    }
    .section-pricing-package .heading-section {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-pricing-package .heading-section .text-1.title {
        margin: 0 auto 15px !important;
    }
    .section-pricing-package .heading-section .modern-pricing-switch-wrap {
        margin: 20px auto 0 !important;
    }
}

