/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}


/*** Full-width Hero Slider ***/
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #17120e;
}

.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item {
    height: min(760px, calc(100vh - 120px));
    min-height: 610px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-carousel .hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 7s ease;
}

.header-carousel .owl-item.active .hero-slide-image {
    transform: scale(1.07);
}

.hero-slide--bridal .hero-slide-image {
    object-position: center 27%;
}

.hero-slide--beauty .hero-slide-image,
.hero-slide--salon .hero-slide-image {
    object-position: center center;
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 6, 5, .82) 0%, rgba(12, 9, 7, .58) 38%, rgba(10, 8, 6, .18) 67%, rgba(8, 6, 5, .1) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: max(6%, calc((100% - 1320px) / 2));
    width: min(650px, 48vw);
    padding: 35px 24px;
    color: #fff;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e0aa4b;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #d9a345;
}

.hero-slide-content h1 {
    max-width: 650px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5.2vw, 82px);
    font-weight: 500;
    line-height: 1.04;
    text-shadow: 0 4px 22px rgba(0, 0, 0, .28);
}

.hero-slide-content p {
    max-width: 570px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.7;
}

.hero-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 15px 25px;
    color: #1c160d;
    background: linear-gradient(135deg, #f1d89d, #d69b35);
    border: 1px solid #e5b65e;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(185, 124, 28, .3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: .3s ease;
}

.hero-book-btn:hover {
    color: #1c160d;
    background: #fff;
    transform: translateY(-3px);
}

.header-carousel .owl-nav {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    bottom: 42px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    background: rgba(20, 15, 10, .55);
    border: 1px solid rgba(225, 174, 83, .75);
    border-radius: 50%;
    font-size: 20px;
    backdrop-filter: blur(7px);
    transition: .3s ease;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: #17120d;
    background: #dfa94c;
}

.header-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
    z-index: 4;
}

.header-carousel .owl-dot {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, .55) !important;
    border-radius: 50%;
    transition: .3s ease;
}

.header-carousel .owl-dot.active {
    width: 28px;
    background: #dfa94c !important;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .header-carousel,
    .header-carousel .owl-stage-outer,
    .header-carousel .owl-stage,
    .header-carousel .owl-item {
        height: 670px;
        min-height: 0;
    }

    .hero-slide-shade {
        background: linear-gradient(90deg, rgba(8, 6, 5, .76), rgba(10, 8, 6, .35));
    }

    .hero-slide-content {
        left: 5%;
        width: 70%;
    }

    .hero-slide-content h1 { font-size: clamp(42px, 8vw, 64px); }
}

@media (max-width: 575.98px) {
    .header-carousel,
    .header-carousel .owl-stage-outer,
    .header-carousel .owl-stage,
    .header-carousel .owl-item {
        height: 590px;
    }

    .hero-slide--bridal .hero-slide-image { object-position: 57% 25%; }
    .hero-slide-content { left: 0; width: 100%; padding: 30px 24px 80px; }
    .hero-kicker { font-size: 11px; letter-spacing: 2px; }
    .hero-slide-content h1 { font-size: 42px; }
    .hero-slide-content p { font-size: 15px; line-height: 1.6; margin-bottom: 27px; }
    .hero-book-btn { padding: 13px 18px; font-size: 12px; }
    .header-carousel .owl-nav { right: 18px; bottom: 20px; }
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next { width: 42px; height: 42px; }
    .header-carousel .owl-dots { left: 22px; bottom: 35px; transform: none; }
}
.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


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

.gallery .gallery-item img {
    transition: .5s;
}

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

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}
/*** Reference-style Header ***/
.site-header {
    top: 0;
    padding: 18px 16px;
    background: rgba(247, 246, 243, .94);
    backdrop-filter: blur(12px);
    z-index: 1030;
}

.header-card {
    max-width: 1400px;
    min-height: 82px;
    margin: 0 auto;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid rgba(189, 140, 55, .08);
    border-radius: 9px;
    box-shadow: 0 12px 32px rgba(28, 24, 18, .12);
}

.amb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px 0 0;
    margin-right: 22px;
    border-right: 1px solid rgba(188, 137, 48, .35);
}

.amb-brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: cover;
    border-radius: 50%;
}

.amb-brand-copy {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    line-height: 1;
}

.amb-brand-copy strong {
    color: #bd8730;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
}

.amb-brand-copy small {
    margin-top: 7px;
    color: #171717;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .65px;
    text-transform: uppercase;
}

.header-links {
    align-items: center;
    gap: 20px;
}

.navbar .header-links .nav-link {
    position: relative;
    margin: 0;
    padding: 25px 0 21px;
    color: #171717;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .15px;
}

.navbar .header-links .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 11px;
    height: 2px;
    background: #d39a39;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.navbar .header-links .nav-link:hover,
.navbar .header-links .nav-link.active {
    color: #ca8f2d;
}

.navbar .header-links .nav-link:hover::after,
.navbar .header-links .nav-link.active::after {
    transform: scaleX(1);
}

.header-actions,
.header-socials {
    display: flex;
    align-items: center;
}

.header-actions {
    gap: 18px;
    margin-left: 22px;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 17px;
    color: #1b160e;
    background: linear-gradient(135deg, #f1d89d, #d69b35);
    border: 1px solid #cc9638;
    border-radius: 7px;
    box-shadow: 0 7px 16px rgba(186, 128, 35, .28);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease;
}

.appointment-btn:hover {
    color: #1b160e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 128, 35, .36);
}

.appointment-btn i {
    font-size: 17px;
}

.header-socials {
    gap: 10px;
}

.header-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    background: #fff;
    border: 1px solid #d5a452;
    border-radius: 50%;
    font-size: 13px;
    transition: .25s ease;
}

.header-socials a:hover {
    color: #fff;
    background: #c69035;
}

@media (max-width: 1199.98px) {
    .site-header { padding: 10px; }
    .header-card { min-height: 72px; padding: 8px 14px; }
    .amb-brand { border-right: 0; }
    .amb-brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
    .amb-brand-copy strong { font-size: 23px; }
    .navbar-toggler { border-color: rgba(189, 135, 48, .45); }
    .navbar-collapse { padding: 18px 4px 8px; }
    .header-links { align-items: stretch; gap: 0; }
    .navbar .header-links .nav-link { padding: 11px 3px; }
    .navbar .header-links .nav-link::after { right: auto; bottom: 5px; width: 32px; }
    .header-actions { margin: 14px 0 0; justify-content: space-between; }
}

@media (max-width: 575.98px) {
    .amb-brand { gap: 8px; margin-right: 0; padding-right: 0; }
    .amb-brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
    .amb-brand-copy strong { font-size: 20px; }
    .amb-brand-copy small { font-size: 6px; letter-spacing: .35px; }
    .appointment-btn { padding: 0 12px; }
    .header-socials { gap: 6px; }
    .header-socials a { width: 30px; height: 30px; }
}
/* Header services dropdown */
.services-dropdown {
    display: flex;
    align-items: center;
}

.service-menu {
    min-width: 225px;
    padding: 9px;
    background: #fff;
    border: 1px solid rgba(189, 140, 55, .18);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(28, 24, 18, .14);
}

.service-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: #29241d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.service-menu .dropdown-item i {
    width: 18px;
    color: #c89031;
    text-align: center;
}

.service-menu .dropdown-item:hover {
    color: #fff;
    background: #c89031;
}

.service-menu .dropdown-item:hover i {
    color: #fff;
}

.service-item[id] {
    scroll-margin-top: 135px;
}

@media (max-width: 1199.98px) {
    .services-dropdown { display: block; }
    .service-menu { border: 0; box-shadow: none; background: #faf7f1; }
}
/* Home header floats over the hero image */
.site-header--overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1050;
}

.site-header--overlay .header-card {
    background: rgba(255, 255, 255, .94);
    border-color: rgba(255, 255, 255, .42);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .2);
    backdrop-filter: blur(13px);
}

.site-header--overlay + .hero-slider-section .header-carousel,
.site-header--overlay + .hero-slider-section .header-carousel .owl-stage-outer,
.site-header--overlay + .hero-slider-section .header-carousel .owl-stage,
.site-header--overlay + .hero-slider-section .header-carousel .owl-item {
    height: min(820px, 100vh);
    min-height: 680px;
}

@media (max-width: 991.98px) {
    .site-header--overlay + .hero-slider-section .header-carousel,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-stage-outer,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-stage,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-item {
        height: 720px;
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .site-header--overlay { padding: 10px; }
    .site-header--overlay .header-card { background: rgba(255, 255, 255, .96); }
    .site-header--overlay + .hero-slider-section .header-carousel,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-stage-outer,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-stage,
    .site-header--overlay + .hero-slider-section .header-carousel .owl-item {
        height: 650px;
    }
}
/* About studio photograph */
.about-studio-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(23, 18, 13, .16);
}
/* INR pricing cards */
.price .price-item img {
    width: 135px;
    height: 96px;
    object-fit: cover;
}

.price .price-item .price-bridal-image {
    object-position: center 23%;
}

.price .price-item .price-range {
    font-size: 22px;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .price .price-item img { width: 105px; height: 88px; }
    .price .price-item .price-range { font-size: 16px; white-space: normal; }
    .price .price-item .px-4 { padding-right: 14px !important; padding-left: 14px !important; }
}
.gallery .gallery-bridal-image {
    width: 100%;
    height: auto !important;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    object-position: center 24%;
}
.blog .blog-bridal-image {
    object-fit: cover;
    object-position: center 24%;
}
.footer-appointment {
    margin-top: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid #c89031;
}

.footer-appointment p {
    max-width: 540px;
    color: rgba(255, 255, 255, .65);
}

.footer-appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    color: #1c160d;
    background: linear-gradient(135deg, #f1d89d, #d69b35);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    transition: .3s ease;
}

.footer-appointment-btn:hover {
    color: #1c160d;
    background: #fff;
    transform: translateY(-2px);
}
/* Transparent header logo */
.amb-brand {
    min-width: 108px;
    min-height: 68px;
    gap: 0;
}

.amb-brand-logo {
    width: 82px;
    height: 72px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 1199.98px) {
    .amb-brand { min-width: 84px; min-height: 58px; }
    .amb-brand-logo { width: 68px; height: 58px; flex-basis: auto; }
}

@media (max-width: 575.98px) {
    .amb-brand { min-width: 70px; }
    .amb-brand-logo { width: 60px; height: 54px; flex-basis: auto; }
}
/* Black colour on the original floating header */
.site-header:not(.site-header--overlay) {
    background: #0b0b0b;
}

.header-card,
.site-header--overlay .header-card {
    background: #0b0b0b;
}
.header-card .header-links .nav-link {
    color: #ffffff;
}

.header-card .header-links .nav-link:hover,
.header-card .header-links .nav-link.active {
    color: #d7a044;
}

.header-card .navbar-toggler {
    border-color: rgba(215, 160, 68, .7);
    background-color: #ffffff;
}
/* Larger responsive logo and golden mobile toggle */
.amb-brand {
    min-width: 126px;
}

.amb-brand-logo {
    width: 102px;
    height: 88px;
}

.header-card .navbar-toggler {
    background-color: #d7a044;
    border-color: #e5b75f;
    box-shadow: 0 4px 12px rgba(215, 160, 68, .25);
}

.header-card .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(215, 160, 68, .3);
}

@media (max-width: 1199.98px) {
    .amb-brand { min-width: 104px; min-height: 70px; }
    .amb-brand-logo { width: 88px; height: 74px; flex-basis: auto; }
}

@media (max-width: 575.98px) {
    .amb-brand { min-width: 92px; min-height: 68px; }
    .amb-brand-logo { width: 82px; height: 70px; flex-basis: auto; }
    .header-card,
    .site-header--overlay .header-card { min-height: 88px; background: #0b0b0b; }
    .header-card .navbar-toggler { margin-right: 2px; padding: 7px 10px; }
}
/* Floating WhatsApp and AMB AI Assistant */
.floating-whatsapp {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 1060;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    color: #fff;
    background: #20b85a;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 30px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.floating-whatsapp i { font-size: 25px; }
.floating-whatsapp:hover { color: #fff; background: #159447; transform: translateY(-3px); }

.amb-chatbot { position: fixed; right: 22px; bottom: 22px; z-index: 1070; }

.amb-chat-toggle {
    position: relative;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0b0b;
    background: linear-gradient(135deg, #f2d28e, #ca8d28);
    border: 2px solid #f3dca8;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0,0,0,.3);
    font-size: 25px;
}

.amb-chat-toggle span {
    position: absolute;
    right: -3px;
    bottom: -2px;
    padding: 2px 5px;
    color: #fff;
    background: #0b0b0b;
    border: 1px solid #d7a044;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 800;
}

.amb-chat-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 355px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d5a348;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0,0,0,.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.97);
    transform-origin: bottom right;
    transition: .28s ease;
}

.amb-chatbot.is-open .amb-chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.amb-chat-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 15px;
    color: #fff;
    background: #0b0b0b;
    border-bottom: 2px solid #d7a044;
}

.amb-chat-avatar {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    background: #d7a044;
    border-radius: 50%;
}

.amb-chat-header strong,
.amb-chat-header small { display: block; }
.amb-chat-header strong { font-family: "Playfair Display", serif; font-size: 16px; }
.amb-chat-header small { color: rgba(255,255,255,.7); font-size: 10px; }
.amb-chat-header small span { display: inline-block; width: 7px; height: 7px; margin-right: 4px; background: #3bd671; border-radius: 50%; }

.amb-chat-close { margin-left: auto; padding: 7px; color: #d7a044; background: transparent; border: 0; }

.amb-chat-messages {
    height: 210px;
    padding: 16px;
    overflow-y: auto;
    background: #f8f5ef;
}

.amb-message {
    max-width: 86%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.55;
}

.amb-message--bot { color: #29231b; background: #fff; border: 1px solid #ead9b8; border-bottom-left-radius: 3px; }
.amb-message--user { margin-left: auto; color: #171109; background: #dfb25f; border-bottom-right-radius: 3px; }

.amb-chat-suggestions { display: flex; gap: 7px; padding: 9px 12px; background: #fff; border-top: 1px solid #eee2cb; }
.amb-chat-suggestions button { padding: 6px 8px; color: #8b5c12; background: #fff8e9; border: 1px solid #d7a044; border-radius: 15px; font-size: 9px; }

.amb-chat-form { display: flex; padding: 10px; background: #fff; border-top: 1px solid #eee2cb; }
.amb-chat-form input { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid #ddd2bf; border-radius: 20px 0 0 20px; outline: 0; font-size: 12px; }
.amb-chat-form input:focus { border-color: #d7a044; }
.amb-chat-form button { width: 42px; color: #111; background: #d7a044; border: 0; border-radius: 0 20px 20px 0; }

.back-to-top { bottom: 100px; }

@media (max-width: 575.98px) {
    .floating-whatsapp { left: 12px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; }
    .floating-whatsapp span { display: none; }
    .amb-chatbot { right: 12px; bottom: 13px; }
    .amb-chat-toggle { width: 54px; height: 54px; }
    .amb-chat-panel { right: 0; bottom: 66px; width: min(340px, calc(100vw - 24px)); }
    .amb-chat-messages { height: 190px; }
    .back-to-top { right: 17px; bottom: 82px; }
}