@font-face {
    font-family: 'Kookoo Wizard';
    src: url('../fonts/KookooWizard.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ghosted Mermaid';
    src: url('../fonts/GhostedMermaid.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

body{
    font-family: Arial, Helvetica, sans-serif;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}
.hero {
    height: 100vh;
    max-height: 960px;
    min-height: 800px;
    position: relative;
    overflow: hidden;

    background: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
	
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: radial-gradient(
        84.34% 93.63% at 50.03% 6.37%,
        #3F6E9D 0%,
        #00151D 100%
    );
    opacity: 0.2; /* Adjust if needed */
}
.hero .container {
    position: relative;
    z-index: 3;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

.hero-heading{
    text-align:center;
    margin-top:240px;
}

.hero-heading h1{
    font-family: 'Kookoo Wizard', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-heading h2{
    font-family: 'Ghosted Mermaid', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FDFDFD;
    margin: 0;
}

.hero-content{
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
    gap:40px;
    margin-top:80px;
    position:relative;
}

.hero-image{
    position:absolute;
    left: -40px;
    bottom: -40px;
    width: 32vw;
    max-width: 580px;
    min-width: 350px;
    z-index: 5;
    pointer-events: none;
}

.hero-image img{
    width: 100%;
    display: block;
    transform: none;
}

.hero-spacer {
    display: block;
    width: 100%;
    max-width: 430px;
}

.hero-action{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    min-height: 280px;
    min-width: 260px;
}

.hero-description{
    color:#fff;
    font-size:18px;
    line-height:25px;
    max-width: 430px;
    justify-self: end;
    margin-right: -50px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:16px;
    white-space: nowrap;
    color:#fff;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    padding:18px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size:16px;
    font-weight:500;
}

.hero-btn-arrow{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:22px;
    height:22px;
    color:#081f34;
}
.feature-section{
    padding: 30px 0 40px;
    background: #477792;
}

.feature-grid{
    display:grid;
    grid-template-columns: 200px 1fr 260px;
    column-gap: 40px;
    align-items: start;
}

.feature-image{
    margin-top: 20px;
    margin-left: -20px;
    width: 200px;
    height: 264px;
    justify-self: start;
}

.feature-image img{
    width: 202px;
    height: 264px;
    object-fit: cover;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    opacity: 1;
    mix-blend-mode: screen;
    display: block;
}
.feature-heading{
    width: 100%;
    margin-top: 80px;
}
.feature-heading h3{
    font-family: 'Ghosted Mermaid', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 65px;
    line-height: 60px;
    letter-spacing: 0;
    color: #FDFDFD;
    margin: 0;
    max-width: 100%;
}

.feature-copy{
    margin-top: 200px;
    align-self: start;
    text-align: right;
    width: 260px;
}

.feature-copy p{
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    color: #FAF8F2;
    text-align: right;
    margin: 0;
    width: 100%;
}

/* Responsive adjustments for Feature Section */
@media (max-width: 991px) {
    .feature-section {
        padding: 80px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
        text-align: center;
    }
    
    .feature-image {
        margin-left: 0;
        margin-top: 0;
    }
    
    .feature-heading {
        width: 100%;
        max-width: 600px;
    }
    
    .feature-heading h3 {
        font-size: 42px;
        line-height: 1.15;
        max-width: 100%;
    }
    
    .feature-copy {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .feature-copy p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-grid {
        gap: 24px;
        padding: 0 20px;
    }
    
    .feature-heading h3 {
        font-size: 30px;
    }
    
    .feature-copy p {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }
}

.gallery-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* padding: 80px 0; */
    background: #477792;
    overflow: hidden;
}

.gallery-section > .container {
    max-width: none;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 140px repeat(4, 1fr) 140px;
    gap: 2px;
}

.gallery-item {
    position: relative;
    min-height: 440px; /* Reduced from 520px to make images less tall */
}

.gallery-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-last {
    position: relative;
}

.gallery-btn {
    position: absolute;
    right: 24px;
    bottom: 20px;
    display: inline-block;
    background: #2d6f95;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease;
    z-index: 5;
}

.gallery-btn:hover {
    background: #1f506e;
}

/* Tablet (max-width: 991px) - Show 4 images including View All button (images B, C, D, E) */
@media (max-width: 991px) {
    .gallery-section {
        /* padding: 50px 0; */
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        /* padding: 0 20px; */
    }
    
    .gallery-item {
        min-height: 320px; /* Reduced from 400px */
    }
    
    .gallery-a,
    .gallery-f {
        display: none;
    }
}

/* Mobile (max-width: 767px) - Show 1 full, 1 half, and View All button (images C, D, E) */
@media (max-width: 767px) {
    .gallery-section {
        /* padding: 40px 0; */
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        /* padding: 0 10px; */
    }
    
    .gallery-item {
        min-height: 200px; /* Reduced from 280px to look compact and proportionate */
    }
    
    .gallery-b {
        display: none;
    }
    
    .gallery-btn {
        left: 12px; /* Position to the left so it is fully visible in the cut-off card */
        right: auto;
        bottom: 12px;
        padding: 6px 12px; /* Reduced padding to fit perfectly */
        font-size: 13px; /* Slightly smaller text for mobile */
    }
}
.booking-section {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #9DBFCC 0%,
        #C8DCE4 28%,
        #EEF4F6 45%,
        #FFFFFF 62%,
        #FFFFFF 100%
    );
}

.booking-grid{
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.booking-copy h2{
    font-family: 'Kookoo Wizard', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 49px;
    color: #001118;
    margin-bottom: 24px;
	padding-right: 80px;
}

.booking-copy p{
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 23px;
    color: #001118;
    max-width: 560px;
    margin: 0 0 40px;
	padding-right: 80px;
}

.review-section{
    margin-top: 40px;
}

.review-section h3{
font-family: Ghosted Mermaid;
font-weight: 400;
font-style: Regular;
font-size: 52px;
leading-trim: NONE;
line-height: 60px;
letter-spacing: 0%;
color: #001118;
}

.review-carousel{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.review-card{
    background: transparent;
    border-radius: 20px;
    padding: 32px;
	padding-left: 0;
    box-shadow: none;
    max-width: 560px;
    width: 100%;
}

.review-meta{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    margin-bottom: 18px;
    align-items: start;
}
.review-stars{
    color: #2ea452;
    font-size: 18px;
    white-space: nowrap;
    grid-row: 1 / span 2;
}

.review-author{
    color: #081f34;
    font-size: 16px;
    line-height: 1.2;
    grid-column: 2;
}

.review-author strong{
    font-weight: 700;
}

.review-date{
    color: #6b788f;
    font-size: 14px;
    grid-column: 1;
}

.review-heading{
    font-family: Inter Tight;
    font-weight: 600;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    color: #001118;
    margin: 0 0 12px;
}

.review-card .review-text,
.review-section .review-text{
    font-family: Inter Tight;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    color: #001118;
    margin: 0;
}

.booking-reviews-swiper {
    overflow: hidden;
    max-width: 560px;
    width: 100%;
}
.booking-reviews-pagination {
    color: #3F829D;
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13.09px;
    line-height: 13px;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-left: 0;
    margin: 28px 0 0;
	margin-left: -130px;
}

.booking-reviews-pagination .pagination-separator {
    width: 16px;
    height: 0;
    border-top: 1px solid #3F829D;
    display: inline-block;
}


.review-next{
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
    transition: transform 0.2s ease;
}

.review-next:hover {
    transform: scale(1.05);
}

.review-next svg {
    width: 20px;
    height: 20px;
}

.booking-widget-wrap{
    min-height: 760px;
}

/* Responsive booking section overrides */
@media (max-width: 991px) {
    .booking-section {
        padding: 80px 0;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .booking-copy p {
        max-width: 100%;
    }
    
/*     .booking-widget-wrap {
        min-height: auto;
    } */
}

@media (max-width: 767px) {
    .booking-section {
        padding: 50px 10px
    }
    
    .booking-grid {
        gap: 40px;
    }
    
    .booking-copy h2 {
        font-size: 36px;
        margin-bottom: 18px;
		padding-right: 0px;
    }
    
    .booking-copy p {
        font-size: 16px;
        margin-bottom: 30px;
		padding-right: 0px;
    }
    
    .review-section h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .review-carousel {
        gap: 12px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .booking-reviews-pagination {
        padding-left: 228px;
    }
/*         .booking-widget-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 500px !important;
        overflow: visible !important;
        display: block !important;
    }
    
    .booking-widget-wrap .bokunWidget,
    .booking-widget-wrap .bokunWidget iframe {
        width: 100% !important;
        min-width: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    } */
    .review-next {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    
    .review-next svg {
        width: 16px;
        height: 16px;
    }
}

.brand-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.brand-row img{
    max-height: 54px;
    width: auto;
    display: block;
}

@media (max-width: 991px) {
    .brand-row {
        margin-top: 60px;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .brand-row {
        margin-top: 40px;
        gap: 30px;
    }
    .brand-row img {
        max-height: 40px;
    }
}

.navbar{
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
    background:#fff;
    border-radius:60px;
    padding:14px 40px;
    
    /* Absolute positioning from the start to prevent layout jumps and slide-in animations */
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 99999;
    
    /* Transition only stylistic properties, not layout coordinates */
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-sticky {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(8, 31, 52, 0.15);
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-menu ul{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-menu a{
    color:#111;
    font-size:18px;
    text-decoration:none;
}

.menu-link-tours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.menu-arrow-icon {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.logo {
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-self: start;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #081f34;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        top: 15px;
        width: calc(100% - 30px);
        padding: 15px 25px;
    }
    
    .navbar.is-sticky {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 30px);
        padding: 10px 20px;
        top: 10px;
    }
    
    .logo {
        height: 32px;
    }
    
    .logo img {
        width: 140px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(8, 31, 52, 0.15);
        padding: 25px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 99998;
    }
    
    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        font-weight: 500;
        color: #081f34;
        display: block;
        padding: 8px 0;
    }
    
    /* Tablet Hero Styling */
        .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        max-height: none;
        min-height: auto;
    }
    
    .hero .container {
        order: 1;
    }
    
    .hero-heading {
        margin-top: 175px;
    }
    
    .hero-heading h1 {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-heading h2 {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        margin-top: 50px;
    }
    
    .hero-spacer {
        display: none;
    }
    
    .hero-image {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 360px;
        margin: 30px auto 0 auto;
        display: block;
        order: 2;
        pointer-events: auto;
    }
    
    .hero-image img {
        transform: none;
    }
    
    .hero-action {
        min-height: auto;
        min-width: auto;
        margin: 15px 0;
        order: 2;
    }
    
    .hero-description {
        max-width: 600px;
        font-size: 18px;
        line-height: 1.8;
        padding: 0 20px;
        order: 1;
        margin-right: 0;
    }
}
/* ==========================================================================
   Different & Why Choose Us Section
   ========================================================================== */
.different-why-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.different-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

/* Left Column - What Makes Our Ghost Tour Different */
.different-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    z-index: 1;
}

.different-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/ghost-different.png") no-repeat center center;
    background-size: cover;
    filter: grayscale(100%) brightness(0.8);
    z-index: -1;
}

.different-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 460 / 560;
}

.different-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.decor-spider {
    position: absolute;
    left: -16px;
    top: 38%;
    width: 65px;
    height: auto;
    z-index: 3;
}

.decor-lamp {
    position: absolute;
    right: 0px;
    bottom: 2px;
    width: 70px;
    height: auto;
    z-index: 3;
}

.different-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 60px 35px 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-sizing: border-box;
}

.different-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0;
    color: #001118;
    text-align: center;
}

.different-title .highlight-blue {
    color: #3F829D;
}

.different-spacer {
    height: 160px;
    flex-shrink: 0;
}

.different-footer-text {
    font-family: 'Inter Tight', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: #001118;
    width: 390px;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
}

/* Right Column - Why Choose Us */
.why-choose-column {
    background: linear-gradient(180deg, #3F829D 0%, rgba(63, 130, 157, 0) 96%, rgba(253, 253, 253, 0) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    z-index: 1;
}

/* Circle pattern design element behind why-choose text */
.why-choose-column::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 412px;
    height: 482px;
    background: url("../images/design.png") no-repeat top right;
    background-size: contain;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.why-choose-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0;
    color: #001118;
    margin-bottom: 45px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    position: relative;
}

.why-choose-item-title {
    font-family: 'Ghosted Mermaid', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0;
    color: #001118;
    margin-bottom: 10px;
}

.why-choose-item-desc {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #1a2d40;
}

/* Gargoyle at the bottom right corner */
.gargoyle-corner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}
@media (max-width: 1024px) {
    .gargoyle-corner-image {
        width: 190px;
    }
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .different-why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-column {
        padding: 80px 40px 220px 40px; /* Space for gargoyle */
    }
    
    .different-card-content {
        padding: 40px 40px 30px 40px;
    }
    
    .different-spacer {
        height: 110px;
    }
    
    .different-title {
        font-size: 28px;
        line-height: 32px;
    }

    .decor-spider {
        left: 10px;
        width: 50px;
    }

    .decor-lamp {
        
        bottom: 2px;
        width: 55px;
    }
    
    .gargoyle-corner-image {
        width: 200;
    }
}
@media (max-width: 767px) {
    .gargoyle-corner-image {
        width: 146px;
    }
}
/* ==========================================================================
   Essential Information Section
   ========================================================================== */
.essential-info-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.essential-info-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Decorations */
.decor-corner {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
}

.decor-tl { top: -50px; left: -140px; }
.decor-tr { top: -50px; right: -140px; }
.decor-bl { bottom: -50px; left: -140px; }
.decor-br { bottom: -50px; right: -140px; }

.decor-scratch {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
}

.decor-l {
    top: 25%;
    left: -180px;
}

.decor-r {
    top: 55%;
    right: -180px;
}

/* Header */
.essential-info-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.essential-subtitle {
    font-family: 'Inter Tight', Arial, sans-serif !important;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #3F829D;
}

.essential-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 49px;
    letter-spacing: 0;
    color: #001118;
    margin: 12px 0 20px 0;
    text-transform: uppercase;
}

.essential-desc {
    font-family: 'Inter Tight', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
    color: #001118;
    width: 682px;
    max-width: 100%;
    margin: 0 auto;
}

/* Info List */
.essential-info-list {
    display: flex;
    flex-direction: column;
}

.essential-info-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #e9f0f4;
}

.essential-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.essential-info-item:first-child {
    padding-top: 0;
}

.essential-item-title {
    font-family: 'Ghosted Mermaid', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0;
    color: #3F829D;
    margin-bottom: 15px;
}

.essential-item-text {
    font-family: 'Inter Tight', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0;
    color: #001118;
    max-width: 460px;
}

.essential-item-image {
    width: 501px;
    max-width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    opacity: 1;
}

.essential-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .decor-scratch {
        display: none;
    }
    
    .decor-corner {
        width: 45px;
    }
    
    .decor-tl { top: -30px; left: -25px; }
    .decor-tr { top: -30px; right: -25px; }
    .decor-bl { bottom: -30px; left: -25px; }
    .decor-br { bottom: -30px; right: -25px; }
    
    .essential-item-image {
        width: 380px;
        max-width: 100%;
        height: 130px;
    }
}

@media (max-width: 767px) {
    .essential-info-section {
        padding: 80px 20px
    }
    
    .essential-info-container {
        padding: 0 20px;
    }
    
    .essential-info-header {
        margin-bottom: 50px;
    }
    
    .essential-title {
        font-size: 38px;
    }
    
    .essential-info-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .essential-item-image {
        width: 100%;
        height: 150px;
    }
    
    .essential-item-text {
        max-width: 100%;
    }
}

/* ==========================================================================
   Join the Haunted Circle Section
   ========================================================================== */
.join-section {
    padding: 60px 0;
    background: #ffffff;
}

.join-wrap {
    background: #000000;
    background-size: cover;
    min-height: 286px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 60px;
    border-radius: 4px;
}

.join-card {
    background: #ffffff;
    padding: 45px;
    max-width: 480px;
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.1;
    color: #081f34;
    letter-spacing: 0.5px;
}

.join-text {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15.36px;
    line-height: 20.16px;
    letter-spacing: 0;
    color: #001118;
}

.join-form {
    display: flex;
    gap: 0;
    width: 362px;
    margin-top: 10px;
}

.join-input {
    flex: 1 1 0;
    min-width: 0;
    height: 42.24px;
    padding: 11.52px 19.2px;
    border: 0.96px solid #C4C4C4;
    border-right: none;
    border-top-left-radius: 7.44px;
    border-bottom-left-radius: 7.44px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12.48px;
    line-height: 100%;
    color: #081f34;
    text-align: left;
    outline: none;
    background: #FDFDFD;
    transition: border-color 0.2s ease;
}

.join-input:focus {
    border-color: #477792;
}

.join-input::placeholder {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12.48px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    color: #979797;
    opacity: 1;
}

.join-btn {
    width: 160.39999389648438px;
    height: 42.2400016784668px;
    padding: 14.4px 19.2px;
    margin-left: -6px;
    border: 0.96px solid #C4C4C4;
    border-left: none;
    border-radius: 7.44px;
    background: #3F829D;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8.06px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.join-btn:hover {
    background: #35627f;
    border-color: #35627f;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .join-wrap {
        justify-content: center;
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .join-section {
        padding: 40px 0;
    }
    
    .join-wrap {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .join-card {
        padding: 35px 25px;
    }
    
    .join-title {
        font-size: 32px;
    }
    
    .join-form {
        flex-direction: column;
        gap: 12px;
        width: 310px;
    }
    
    .join-input {
        width: 100%;
        border: 0.96px solid #C4C4C4 !important;
        border-radius: 4px !important;
        background: #FDFDFD;
        box-sizing: border-box;
    }
    
    .join-btn {
        width: 100% !important;
        margin-left: 0 !important;
        border: 0.96px solid #C4C4C4 !important;
        border-radius: 4px !important;
        text-align: center;
        box-sizing: border-box;
    }
}
/* ==========================================================================
   Hear From Fellow Ghost Hunters Section
   ========================================================================== */
.hunters-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #f0f5f8;
}

.hunters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hunters-left {
    max-width: 540px;
}

.hunters-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.1;
    color: #081f34;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hunters-desc {
    font-family: Inter Tight;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 23px;
    letter-spacing: 0%;
    color: #001118;
}

.hunters-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hunters-rating-text {
    font-family: Inter Tight;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #001118;
}

.hunters-card-img {
    flex: 0 0 auto;
    max-width: 150px;
    width: 100%;
    height: auto;
    max-height: 50px;
    display: block;
    object-fit: contain;
}

.hunters-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: 100%;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .hunters-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .hunters-left {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hunters-section {
        padding: 50px 0;
    }
    
    .hunters-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .hunters-rating-text {
        text-align: center;
        max-width: 100%;
    }
}


/* ==========================================================================
   Site Footer Section
   ========================================================================== */
.site-footer {
    position: relative;
    background: transparent; /* Light blue-grey footer background matching joinbg bottom */
    padding: 150px 0 0 0; /* Padding top to clear the ticker overlap */
    z-index: 15;
}

.footer-ticker-wrap {
    width: 100vw;
    position: absolute;
    top: 25px; /* Angle offset */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #001118;
    padding: 10px 0;
    transform: rotate(3deg) scale(1.05); /* Tilts downwards from left to right */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
overflow: hidden;
}

.footer-ticker-track {
    display: flex;
    width: max-content;
    animation: footerMarquee 25s linear infinite;
}

.footer-ticker {
    display: flex;
   
    align-items: center;
    gap: 35px;
    white-space: nowrap;
    width: 120%;
    margin-left: -10%;
	padding-right: 35px;
}
@keyframes footerMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
.ticker-item {
    font-family: 'Ghosted Mermaid', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FDFDFD;
}

.ticker-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-skull-icon {
    width: auto;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.footer-main-content {
    width: 100%;
}
@media (min-width: 992px) {
    .footer-main-content {
        max-width: 1180px;
/*         margin: 0 auto; */
        height: 289px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
		margin-left:80px;
    }
    
    .footer-main-content .footer-grid {
        margin-bottom: 0;
    }
}


.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 30px 20px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
@media (min-width: 992px) {
    .footer-col-quicklinks {
        margin-left: 30px;
    }
}

.footer-col-info {
    max-width: 330px;
}

.footer-logo {
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin-left: -25px;
}

.footer-logo-desc {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    color: #001118;
    margin-bottom: 15px;
}

.footer-heading {
    font-family: 'Kookoo Wizard', Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    color: #001118;
    margin-bottom: 25px;
    letter-spacing: 0;
}


.footer-contact-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17.14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #00111899;
    margin-bottom: 4px;
}

.contact-value {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #001118;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #477792;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17.14px;
    line-height: 100%;
    color: #001118;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #477792;
    padding-left: 2px;
}

.footer-row-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
	margin-right: 80px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #477792;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon-btn svg {
    width: 16px;
    height: 16px;
}

.social-icon-btn:hover {
    background: #081f34;
    transform: translateY(-2px);
}

.footer-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    height: 32px;
    width: auto;
    display: block;
}

.footer-divider {
    border: none;
    border-top: 1px solid #cbd5e1;
    margin: 15px 0 0 0;
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 20px 0;
}

.footer-copyright, .footer-credits {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #001118;
}

.footer-credits {
    text-align: right;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .site-footer {
        padding-top: 80px;
    }
    .footer-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    
    .footer-ticker-wrap {
        top: 15px;
        padding: 12px 0;
    }
    
    .ticker-item {
        font-size: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col-info {
        max-width: 100%;
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 70px;
    }
    .footer-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .footer-ticker-wrap {
        top: 10px;
        padding: 10px 0;
    }
    
    .ticker-item {
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
		margin-top: 30px;
    }
    
    .footer-col-info {
        grid-column: span 1;
    }
    
    .footer-row-meta {
        flex-direction: column;
        align-items: center;
        gap: 25px;
		margin-right: 0px;
    }
    
    .footer-copyright-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
}
=======================================================
   Reviews Slider Section
   ========================================================================== */
.reviews-slider-section {
    background: #ffffff;
    padding: 0;
}

.reviews-slider-line {
    border: none;
    border-top: 1px solid #cbd5e1;
    width: calc(100% - 80px);
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 80px 40px 40px 40px !important;
    display: flex;
    align-items: center;
    gap: 40px;
}

.reviews-nav-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: transform 0.2s ease;
}

.reviews-nav-btn svg {
    width: 100%;
    height: 100%;
}

.reviews-nav-btn svg path {
    fill: #001118;
    transition: fill 0.2s ease;
}

.reviews-nav-btn:hover {
    transform: scale(1.05);
}

.reviews-nav-btn:hover svg path {
    fill: #3F829D;
}

.reviews-swiper {
    flex-grow: 1;
    overflow: hidden;
}

.reviews-slider-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.reviews-slider-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 4px 15px;
}

.reviews-slider-stars {
    color: #10b981;
    font-size: 16px;
    letter-spacing: 1px;
    grid-column: 1;
    grid-row: 1;
}

.reviews-slider-author-date {
    display: contents;
}

.reviews-slider-author {
    font-family: Inter Tight;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 21.74px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color:#001118;
}

.reviews-slider-date {
font-family: Inter Tight;
font-weight: 500;
font-style: Medium;
font-size: 13px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #00111899;
}

.reviews-slider-title {
    font-family: Inter Tight;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 20px;
	letter-spacing: 0%;
	color: #001118;
	margin-top:10px;
	margin-bottom:10px;
}

.reviews-slider-text {
    font-family: Inter Tight;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 20px;
	letter-spacing: 0%;
	color: #001118;
}

.reviews-slider-pagination {
    text-align: center;
    padding-bottom: 80px;
    font-family: Inter Tight;
    font-size: 14px;
    font-weight: 700;
    color: #477792;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .reviews-slider-container {
        padding: 50px 20px 30px 20px;
        gap: 15px;
    }
    
    .reviews-slider-line {
        width: calc(100% - 40px);
    }
    
    .reviews-slider-pagination {
        padding-bottom: 50px;
    }
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.faq-footer-wrap {
    background: linear-gradient(180deg, #3F829D 0%, #e9f2f8 65%, #FDFDFD 100%);
}
.faq-section {
    padding: 100px 0 140px 0; /* Padding bottom leaves room for the slanted footer ticker */
    background: transparent;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px !important;
}

.faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.faq-subtitle {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #FDFDFD;
    display: block;
    margin-bottom: 12px;
}

.faq-title {
    font-family: 'Kookoo Wizard', Arial, sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    color: #081f34;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-desc {
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
    color: #001118;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    font-family: 'Inter Tight', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #001118;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 28px 24px 28px;
    font-family: 'Inter Tight', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #1f3243;
    opacity: 0.95;
}

.faq-answer p {
    margin: 0;
}

.faq-icon-plus {
    position: relative;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon-plus::before, .faq-icon-plus::after {
    content: "";
    position: absolute;
    background: #477792;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-icon-plus::before {
    width: 12px;
    height: 2px;
}

/* Vertical line */
.faq-icon-plus::after {
    width: 2px;
    height: 12px;
}

/* When details is open, rotate the plus to a minus! */
details[open] .faq-icon-plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 80px 0 120px 0;
    }
    
    .faq-title {
        font-size: 38px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================================
   Video Slider Section
   ========================================================================== */
.video-slider-section {
    padding: 80px 0;
    background: #ffffff;
	height: 680px;
}

.video-swiper {
    position: relative;
    padding: 0 15px;
}

.video-slide {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #000000;
}

.video-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.video-slide:hover::after {
    background: rgba(0, 0, 0, 0.25);
}

.video-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.video-slide:hover .video-slide-img {
    transform: scale(1.06);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #477792;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.video-play-btn:hover {
    background: #1f3243;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Custom Swiper Navigation Buttons */
.video-swiper-next,
.video-swiper-prev {
    color: #081f34 !important;
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

.video-swiper-next::after,
.video-swiper-prev::after {
    font-size: 16px !important;
    font-weight: bold !important;
}

.video-swiper-next:hover,
.video-swiper-prev:hover {
    background: #081f34 !important;
    color: #ffffff !important;
}

/* Video Lightbox Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000000;
    border-radius: 8px;
    overflow: visible;
    z-index: 100000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.video-modal-close:hover {
    color: #cbd5e1;
}

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .video-slider-section {
        padding: 50px 0;
    }
    .video-modal-close {
        top: -40px;
        right: 10px;
    }
}

/* Force Fancybox to load on top of the sticky navbar */
.fancybox__container {
    --fancybox-zIndex: 999999 !important;
}

/* Lock horizontal scroll when Fancybox overrides html/body styling */
html.with-fancybox,
html.with-fancybox body {
    overflow-x: hidden !important;
}

@media (max-width: 767px) {
    /* Mobile Hero Overrides */
    .hero-heading {
        margin-top: 130px;
    }
    
    .hero-heading h1 {
        font-size: 48px;
    }
    
    .hero-heading h2 {
        font-size: 30px;
    }
    
    .hero-content {
        gap: 30px;
        margin-top: 40px;
    }
    
    .hero-image {
        max-width: 260px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 15px;
    }
    
    /* Mobile Different Section overrides */
     .different-column {
        padding: 60px 15px;
    }
    
    .different-column::before {
        background-position: 70% center;
    }
    
    .different-card-content {
        padding: 45px 25px 35px 25px;
        min-height: auto;
        padding: 30px 25px 25px 25px;
    }
    
    .different-footer-text {
        font-size: 15px;
        line-height: 1.4;
        width: 100%;
    }
    
    .different-spacer {
        height: 150px;
        height: 80px;
    }
}