:root {
    --primary-color: #F5AD5D;
    --secondary-color: #FFFFFF;
    --accent-color: #f8f9fa;
    --bg-dark: #000000;
    --text-muted: #aaaaaa;
    --font-heading: 'Inter', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--primary-color) !important;
}

.bg-gold {
    background-color: var(--primary-color) !important;
}

.top-bar {
    background: #0F0F0F;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

#mainNav {
    background-color: #000;
    padding-top: 0;
    padding-bottom: 0;
    transition: background-color 0.2s;

}

@media (min-width: 992px) {
    #mainNav {
        height: 80px;
    }
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background-color: #000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-gold {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-gold-form {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #b39028;
    color: #fff;
}


.services-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    width: 100vw;
    margin-left: -12px;

    padding-left: 12px;
}

.services-scroll-container::-webkit-scrollbar {
    display: none;
}

.service-col {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    margin-right: 15px;
}

.services-indicators .indicator {
    width: 30px;
    height: 4px;
    background-color: #333;
    margin: 0 5px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.services-indicators .indicator.active {
    background-color: #D4AF37;
}

@media (min-width: 992px) {
    .services-scroll-container {
        display: flex;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
        width: auto;
        padding-left: 0;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .service-col {
        flex: 0 0 auto;
        width: 33.333333%;
        max-width: 33.333333%;
        margin-right: 0;
    }
}

.masthead {

    padding-top: 6rem;

    padding-bottom: 3rem;
    background: url('/assets/img/gettyimg.png');
    display: flex;
    position: relative;
    min-height: 100vh;

    height: auto;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .masthead {
        padding-top: 0;
        padding-bottom: 0;
        height: 882px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down.d-lg-block {
    position: static;
    transform: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.masthead-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.masthead-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-img-container {
    display: flex;
    justify-content: center;
}

.hero-img {

    position: relative;
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .hero-img {
        max-height: 970px;
        object-fit: cover;
        position: absolute;
        top: 0;
        width: auto;

        margin-top: 0;
    }
}

.bebas {
    font-family: 'Bebas Neue', cursive;
}

.bebas span {
    color: #FBB263;
}

#about {
    background-color: #000000;
    height: 800px;
    background: url('/assets/img/hair1.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: -42% 79%;
    display: flex;
    align-items: center;
}

#about .text-muted {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    text-transform: lowercase;
    color: #FFFFFF;
}

.about-img-container {
    padding: 2rem;
}

.about-spinner {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
    height: 202px;
    width: 202px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-img-main {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #000;
    padding: 2rem;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 6rem 0;
    color: #fff;
    padding-bottom: 5px;
}

@media (min-width: 992px) {
    .faq-section {
        padding-bottom: 176px;
    }
}

.faq-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-header p {
    color: #aaa;
    margin-bottom: 4rem;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.faq-container-bg {
    background-color: #0d0d0d;
}

.faq-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    position: relative;
    z-index: 10;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #F5AD5D;
}

.faq-toggle {
    color: #F5AD5D;
    font-size: 1.2rem;
    font-weight: 300;
    min-width: 20px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 3rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
    display: flex;
    justify-content: center;
    position: relative;
    height: auto;

    margin-top: 60px;
}

@media (min-width: 992px) {
    .faq-image-wrapper {
        height: 550px;
    }
}

.faq-image-bg {
    background: linear-gradient(to bottom, #4a3b2a, #1a1a1a);
    border-radius: 50% 50% 0 0;
    width: 100%;
    max-width: 420px;
    height: 500px;
    position: absolute;
    bottom: 50px;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-chair-img {

    position: relative;
    z-index: 1;
    max-width: 100%;

    width: 100%;
    height: auto;
    left: auto;
    transform: none;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .faq-chair-img {
        position: absolute;
        max-width: 637px;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}

.bg-darker {
    background-color: #0a0a0a;
}

.hair-3 {
    width: 50%;
    top: -55px;
}

.contact-banner {
    background: linear-gradient(90deg, #E29648 0%, #D48439 100%);
    position: relative;
    height: auto;
    padding: 8vw 0;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #000;
}

@media (min-width: 992px) {
    .contact-banner {
        height: 390px;
        padding: 0;
    }
}

.banner-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 100;
    width: 60%;
    max-width: 800px;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.banner-hair-left {
    position: absolute;
    left: -5%;
    bottom: -50px;
    height: 90%;

    width: auto;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

@media (min-width: 992px) {
    .banner-hair-left {
        height: 90%;
    }
}

.banner-hair-right {
    position: absolute;
    right: -5%;
    bottom: -50px;
    height: 90%;

    width: auto;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
}

@media (min-width: 992px) {
    .banner-hair-right {
        height: 90%;
    }
}

.banner-content {
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: 6vw;

    margin-bottom: 2vw;
    color: #000;
}

@media (min-width: 992px) {
    .banner-title {
        font-size: 4rem;
    }
}

.banner-title .text-white {
    color: #fff !important;
}

.banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 3vw;

    max-width: 80%;
    margin: 0 auto 4vw;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
}

@media (min-width: 992px) {
    .banner-text {
        font-size: 1.1rem;
        max-width: 650px;
        margin: 0 auto 2.5rem;
    }
}


.banner-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 992px) {
    .banner-buttons {
        display: block;
        width: auto;
    }
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 2vw 4vw;

    font-weight: 600;
    font-size: 2.5vw;

    text-transform: uppercase;
    margin-right: 0;

    transition: all 0.3s;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .btn-black {
        padding: 15px 35px;
        font-size: 0.9rem;
        margin-right: 1.5rem;
        width: auto;
        margin-bottom: 0;
        border-radius: 4px;
    }
}

.btn-black:hover {
    background-color: #222;
    color: #F5AD5D;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 2vw 4vw;

    font-weight: 600;
    font-size: 2.5vw;
    /* Scaled font size */
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
    width: 100%;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .btn-white {
        padding: 15px 35px;
        font-size: 0.9rem;
        width: auto;
        border-radius: 4px;
    }
}

footer {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

.footer-about-text {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-contact-info p {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #fff;
}

.footer-heading {
    color: #F5AD5D;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F5AD5D;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-input {
    background-color: #222;
    border: none;
    padding: 10px 15px;
    color: #fff;
    flex: 1;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    background-color: #333;
}

.newsletter-btn {
    background-color: #F5AD5D;
    border: none;
    padding: 10px 15px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #d48439;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #F5AD5D;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.copyright-bar {
    background-color: #111;
    text-align: center;
    padding: 1.5rem 0;
    width: 100%;
    margin-top: 4rem;
    color: #fff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#services {
    background-color: #000;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 0%;
    display: flex;
    align-items: center;
    padding-top: 0px;
}

.hair-2 {
    width: 50%;
    float: right;
    top: -100px;
    right: 0;
    z-index: 0;
    pointer-events: none;
}

#services .container {
    position: relative;
    z-index: 1;
}

#services .container .text-muted {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    text-transform: lowercase;
    color: #FFFFFF;
}

#services .container p.card-text {
    color: #FFFFFF;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    text-transform: lowercase;
    text-align: left;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.border-gold {
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.3s;
}

.service-card:hover .card-img-top {
    filter: grayscale(0%);
}

.bg-black {
    background-color: #000;
}

.sliding-gallery-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.gallery-tack:hover {
    animation-play-state: paused;
}

.gallery-item {
    position: relative;
    width: 300px;

    flex-shrink: 0;
    margin-right: 16px;
    cursor: pointer;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gallery-item {
        width: 400px;

    }
}

.gallery-item img {
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.service-img-bw,
.service-img-color {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.service-img-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.service-card:hover .service-img-color {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/gallery/overlay.png') no-repeat center center / cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-track-reverse {
    display: flex;
    width: fit-content;
    animation: scroll-reverse 40s linear infinite;
}

.gallery-track-reverse:hover {
    animation-play-state: paused;
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.pricing-card {
    border: none;
    padding: 0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-header {
    background-color: #0f0f0f;
    padding: 2rem 1.5rem 2.5rem;
    position: relative;
}

.pricing-header {
    padding-bottom: 70px;
}

.pricing-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #b39028 20%, #b39028 50%, #b39028 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 50%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 50%, black 85%, transparent 100%);
    border-radius: 2px;
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('assets/img/pricing/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    z-index: 0;
    pointer-events: none;
}

.pricing-title {
    color: #F5AD5D;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.card-icon-box {
    background: linear-gradient(135deg, #e6b980 0%, #eacda3 100%);
    width: 73px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    bottom: -32.5px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.card-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-body {
    background-color: #111;
    padding: 3rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-item span:last-child {
    color: #F5AD5D;
    font-weight: 700;
}

.pricing-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.pricing-total span:last-child {
    color: #F5AD5D;
}

.unwind-offer {
    display: block;
    width: 90%;
    align-self: center;
    background-color: #CD853F;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s;
    border: none;
}

.unwind-offer:hover {
    background-color: #b37434;
    color: #fff;
}

.reviews-section {
    background-color: #000;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
}

.reviews-carousel-container {
    padding: 2rem 0;
    position: relative;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background-color: #111;
    padding: 2.5rem;
    border-radius: 4px;
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #F5AD5D;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F5AD5D;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.author-info p {
    color: #F5AD5D;
    font-size: 0.9rem;
    margin: 0;
}

.carousel-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 45px;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0 5%;
    pointer-events: auto;
}

.nav-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.nav-btn.prev-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
    color: #F5AD5D;
}

.nav-btn.prev-btn:hover {
    border-color: #F5AD5D;
    color: #F5AD5D;
}

.nav-btn.next-btn {
    background-color: #F5AD5D;
    border: 1px solid #F5AD5D;
    color: #000;
}

.nav-btn.next-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.carousel-indicators-custom {
    display: flex;
    gap: 8px;
    pointer-events: auto;
}

.indicator {
    width: 40px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #F5AD5D;
}

section {
    padding: 6rem 0;
}

.section-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #fff;
}

.section-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 4rem;
    text-transform: none;
    letter-spacing: normal;
}

.text-gold {
    color: #F5AD5D !important;
}

.bg-hair-image {
    background-image: url('assets/img/reviews/hair3.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    z-index: 0;
    pointer-events: none;
}


#bookingModal .modal-backdrop {
    display: none;

}

#bookingModal {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-right: 0 !important;
    background-color: #150C00C9;

}

#bookingModal .modal-dialog {
    max-width: 1100px;
}

.booking-modal-content {
    background: linear-gradient(135deg, rgba(61, 34, 7, 0.85) 0%, rgba(26, 15, 8, 0.9) 100%);
    border: 1px solid rgba(245, 173, 93, 0.3);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking-image-container {
    height: 100%;
    min-height: 500px;
    background: radial-gradient(circle at center, rgba(245, 173, 93, 0.15) 0%, 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}



.booking-person-img {
    position: relative;
    z-index: 1;
    max-height: 550px;
    object-fit: contain;
    margin-bottom: -10px;

}

.booking-form-container {
    padding: 3rem 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-input {
    background-color: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.booking-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #F5AD5D;
    color: #fff;
    box-shadow: none;
}

.booking-input::placeholder {
    color: white;
    font-size: 0.85rem;
}

.form-select.booking-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}


@media (max-width: 991px) {
    #bookingModal {
        padding: 0 !important;
    }

    #bookingModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .booking-modal-content {
        border-radius: 0;
        border: none;
        height: 100%;
        overflow-y: auto;
    }

    .booking-form-container {
        padding: 2rem 1.5rem;
        justify-content: flex-start;
        padding-top: 4rem;

    }

    .booking-image-container::before {
        display: none;
    }
}


.mobile-booking-image-wrapper {
    background: radial-gradient(circle at center, rgba(245, 173, 93, 0.15) 0%, transparent 70%);
    overflow: hidden;
    padding-top: 2rem;

}



.mobile-booking-image-wrapper img {
    position: relative;
    z-index: 1;
}


.btn-dark-custom {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F5AD5D;
    transition: all 0.3s;
    border-radius: 4px;
    padding: 12px 0;

}

.btn-dark-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #F5AD5D;
    color: #fff;
}


footer {
    background-color: #000;
    color: #fff;
    padding-top: 4rem;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: #ccc;
    width: 20px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #F5AD5D;
}

.newsletter-form {
    position: relative;
    display: flex;
}

.newsletter-input {
    width: 100%;
    background-color: #222;
    border: none;
    padding: 10px 15px;
    color: #fff;
    border-radius: 0;
}

.newsletter-input:focus {
    outline: none;
    background-color: #333;
}

.newsletter-btn {
    background-color: #F5AD5D;
    border: none;
    color: #000;
    padding: 0 15px;
    border-radius: 0;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #fff;
}

.footer-social a {
    color: #F5AD5D;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #000;
    border-radius: 50%;
}

.footer-social a:hover {
    color: #fff;
}

.copyright-bar {
    background-color: #111;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
}