/* ===========================================================
   Global Beauty Studio — theme additions
   (base accent colour is the template's original brown, #6a4031,
   left untouched in style.css; these variables mirror it so the
   custom components below match automatically)
   =========================================================== */

:root {
    --gbs-primary: #6a4031;
    --gbs-primary-dark: #4a2c21;
    --gbs-gold: #cab79a;
    --gbs-bg-soft: #f8f2ec;
}

/* ---- Root cause of every "button is glued to the text above it" bug ----
   .btn_dark is an <a> with no display set, so the browser default is
   display:inline — and margin-top/margin-bottom do NOTHING on inline,
   non-replaced elements. Every margin-top we set on a standalone .btn_dark
   (here, on the timing card, on the CTA band) was silently ignored. Making
   it inline-block is what actually lets vertical margin apply. */
.btn_dark, .btn_lite {
    display: inline-block;
}

/* ---- Top info bar ---- */
.top_header {
    background: var(--gbs-primary-dark);
}
.top_header .greeting h6,
.top_header .greeting a {
    color: #f3e9f1;
}
.top-info-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}
.top-info-bar::-webkit-scrollbar { display: none; }
.top-info-bar li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f3e9f1;
    font-size: 12.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.top-info-bar li a {
    color: #f3e9f1;
}
.top-info-bar li a:hover {
    color: var(--gbs-gold);
}
.top-info-bar .top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 4px;
}
.top-info-bar .top-social a {
    display: inline-flex;
    font-size: 14px;
}
@media (max-width: 991px) {
    .top-info-bar { justify-content: flex-start !important; }
}

/* ---- Logo ---- */
.brand-logo img {
    height: 74px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}
.footer-title img.footer-logo {
    height: 60px;
    width: auto;
}
@media (max-width: 767px) {
    .brand-logo img {
        height: 52px;
    }
}

/* ---- Header right : call + book button ---- */
.main_menu_right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gbs-primary);
    font-weight: 600;
    white-space: nowrap;
}
.header-call i {
    font-size: 20px;
}
/* Same look as the hero's .btn_dark buttons — only the padding is trimmed to fit the nav bar */
.header-book-btn {
    padding: 12px 26px !important;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .header-call span.call-text { display: none; }
}
@media (max-width: 575px) {
    .main_menu_right { gap: 8px; }
    .header-book-btn { padding: 9px 18px !important; font-size: 11px; }
    .header-call i { font-size: 17px; }
}

/* ---- Breadcrumb banner ---- */
.theme-breadcrumb {
    position: relative;
    padding: 70px 0;
    background-color: #2e1c14 !important;
}
.theme-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46,28,20,0.72) 0%, rgba(46,28,20,0.85) 100%);
}
.theme-breadcrumb nav > div {
    position: relative;
    z-index: 2;
}
.theme-breadcrumb h2 {
    font-family: "Prata", serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.theme-breadcrumb .breadcrumb {
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.theme-breadcrumb .bc-subtitle {
    text-align: center;
    color: #f3e9de;
    max-width: 640px;
    margin: 14px auto 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ---- Section eyebrow ---- */
.section-eyebrow {
    display: inline-block;
    color: var(--gbs-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 6px;
}

/* ---- Service / feature cards ---- */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(106,64,49,0.09);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(106,64,49,0.18);
}
.service-card .service-card-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}
.service-card .service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.service-card:hover .service-card-img img {
    transform: scale(1.08);
}
.service-card .service-card-body {
    padding: 20px 22px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card .service-card-body h5 {
    margin-bottom: 6px;
    font-family: "Prata", serif;
}
.service-card .service-card-body h5 a {
    color: #262626;
}
.service-card .service-card-body h5 a:hover {
    color: var(--gbs-primary);
}
.service-card .service-card-body .subtitle {
    color: var(--gbs-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card .service-card-body p {
    color: #777;
    font-size: 14px;
    margin-bottom: 16px;
}
.service-card .service-card-body .service-more {
    margin-top: auto;
    color: var(--gbs-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.service-card .service-card-body .service-more i {
    margin-left: 4px;
    transition: margin .2s;
}
.service-card:hover .service-card-body .service-more i {
    margin-left: 9px;
}

/* ---- Highlights pill list (service detail) ---- */
.highlight-pills {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.highlight-pills li {
    background: var(--gbs-bg-soft);
    border: 1px solid #e8d9c8;
    color: var(--gbs-primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}
.highlight-pills li i {
    color: var(--gbs-primary);
    margin-right: 6px;
}

/* ---- Gallery grid ---- */
.gallery-grid-item {
    margin-bottom: 26px;
}
.gallery-grid-item .gallery-thumb {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.gallery-grid-item .gallery-thumb img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 18%;
    transition: transform .5s;
}
.gallery-grid-item .gallery-thumb:hover img {
    transform: scale(1.09);
}
.gallery-grid-item .gallery-thumb .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(106,64,49,0) 40%, rgba(46,28,20,0.82) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s;
}
.gallery-grid-item .gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}
.gallery-grid-item .gallery-overlay h6 {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

/* Gallery lightbox modal (Bootstrap) */
#galleryModal .modal-dialog {
    max-width: 800px;
}
#galleryModal .modal-content {
    background: transparent;
    border: none;
}
#galleryModal .modal-body {
    padding: 0;
    position: relative;
}
#galleryModal img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
#galleryModal .gbs-caption {
    background: #fff;
    padding: 14px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    color: #262626;
    margin: 0;
}
#galleryModal .btn-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 5;
}

/* ---- Blog cards ---- */
.blog-right .post-date {
    display: inline-block;
    color: var(--gbs-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.blog-right h4 a {
    color: #262626;
}
.blog-right h4 a:hover {
    color: var(--gbs-primary);
}
.blog-right .read-more {
    color: var(--gbs-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.blog-details-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}
.about-story p,
.main-contain p.para1,
.main-contain p.para2,
.blog-right p {
    text-align: justify;
}
.blog-details-hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

/* ---- Timing table ---- */
.timing-table {
    width: 100%;
    border-collapse: collapse;
}
.timing-table td {
    padding: 9px 4px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
}
.timing-table td:first-child {
    font-weight: 600;
}
.timing-table td:last-child {
    text-align: right;
}
/* Footer sits on a dark background — needs light text */
.footer-timing td {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #d9cfcb;
}
.footer-timing td:first-child {
    color: #efe7dc;
}

/* ---- Mission flip-box images (portrait photos need a fixed, cropped height
   here — otherwise the tall source images blow the 2x2 grid out of shape) ---- */
.mission-section .flip-box-front img,
.mission-section .flip-box-back img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.mission-section .box-item { margin-bottom: 20px; }
/* .box-container is display:flex + align-items:center with no width set,
   which shrinks its child to content width instead of filling the column —
   that's why the grid looked narrow with empty space beside it. */
.mission-section .box-container {
    align-items: stretch;
    width: 100%;
}
.mission-section .box-item,
.mission-section .flip-box,
.mission-section .flip-box-front {
    width: 100%;
}

/* ---- "See The Transformation" photo (homepage) ----
   Scoped to .ba-section (not the shared .service-section.animation-section
   pair of classes) because the Services teaser section also carries both
   those classes — an earlier unscoped selector here was stripping its
   bottom padding too and pushing its "View All Services" button out of place. */
.ba-section .image-container {
    position: relative;
    z-index: 3;
}
.ba-section .image-container .ba-photo {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(74,44,33,0.22);
}
.ba-section .btn_dark.ba-cta {
    margin-top: 46px;
}
@media (max-width: 767px) {
    .ba-section .image-container .ba-photo {
        height: 320px;
    }
}

/* ---- Studio timing card (homepage) ---- */
.timing-card {
    background: linear-gradient(145deg, var(--gbs-primary) 0%, var(--gbs-primary-dark) 100%);
    border-radius: 14px;
    padding: 46px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 34px rgba(74,44,33,0.28);
}
.timing-card-icon {
    font-size: 34px;
    color: var(--gbs-gold);
    margin-bottom: 14px;
    display: inline-block;
}
.timing-card h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #f3e9de;
    margin-bottom: 16px;
}
.timing-card .timing-days {
    font-family: "Prata", serif;
    font-size: 26px;
    margin-bottom: 4px;
    color: #fff;
}
.timing-card .timing-hours {
    font-size: 22px;
    font-weight: 600;
    color: var(--gbs-gold);
    margin-bottom: 10px;
}
.timing-card .timing-note {
    display: block;
    font-size: 13px;
    color: #ddc9b0;
    letter-spacing: .5px;
}
.timing-card .timing-cta {
    margin-top: 22px;
}

/* ---- Balanced content images (avoid tall portrait photos towering over text) ---- */
.balanced-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}
/* .main-image is display:inline-block in the base theme, which shrink-wraps
   to its content instead of filling the column — forcing the image narrow.
   Make it a full-width block so the photo fills its column properly. */
.main-image {
    display: block;
    width: 100%;
}

/* ---- Services page category filter tabs ---- */
#serviceFilters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px !important;
}
#serviceFilters .filter-button {
    background: #fff;
    border: 1.5px solid #ddc9b0;
    color: var(--gbs-primary);
    padding: 11px 28px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}
#serviceFilters .filter-button:hover {
    background: var(--gbs-bg-soft);
    border-color: var(--gbs-primary);
    transform: translateY(-2px);
}
#serviceFilters .filter-button.active {
    background: var(--gbs-primary);
    border-color: var(--gbs-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(106,64,49,0.3);
}

/* ---- FAQ page ---- */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
    font-family: "Prata", serif;
    color: var(--gbs-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gbs-bg-soft);
}
.faq-page .accordion-item {
    border: 1px solid #eee;
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
}
.faq-page .accordion-button {
    font-weight: 600;
    color: #262626;
    background: #fff;
}
.faq-page .accordion-button:not(.collapsed) {
    color: var(--gbs-primary);
    background: var(--gbs-bg-soft);
    box-shadow: none;
}
.faq-page .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.faq-page .accordion-button::after {
    filter: none;
}
.faq-page .accordion-body {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}
.faq-cta {
    background: var(--gbs-bg-soft);
    border-radius: 10px;
    padding: 40px 20px;
    margin-top: 20px;
}
.faq-cta h5 { font-family: "Prata", serif; margin-bottom: 8px; }
.faq-cta p { color: #666; margin-bottom: 20px; }

/* ---- Solid purple CTA band (used instead of reusing .mission-section, which
   the tan-bg override below would otherwise wash out to near-white) ---- */
.cta-purple {
    background: linear-gradient(135deg, var(--gbs-primary) 0%, var(--gbs-primary-dark) 100%);
}
.cta-purple h2 { color: #fff; }
.cta-purple p { color: #f3e9de; }
.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
@media (max-width: 575px) {
    .cta-btn-group { flex-direction: column; align-items: stretch; }
    .cta-btn-group .btn_dark { text-align: center; }
}

/* Note: .service-section / .mission-section / .testimonial_section / .feature-section
   keep their original tan/gold photo backgrounds (bg1.jpg, mission/bg.jpg, etc.) from
   style.css — they match the brown theme, no override needed. */

/* ---- Footer map embed ---- */
.footer-map-wrap {
    margin-top: 34px;
    border-radius: 8px;
    overflow: hidden;
    filter: grayscale(35%) contrast(1.05);
    border: 3px solid rgba(255,255,255,0.08);
}
.footer-map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

/* ---- Contact page ---- */
.contact-info-box {
    background: var(--gbs-bg-soft);
    border-radius: 10px;
    padding: 30px;
}
.contact-info-box .ci-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-box .ci-item:last-child { margin-bottom: 0; }
.contact-info-box .ci-item i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--gbs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-info-box .ci-item h6 {
    margin-bottom: 4px;
    font-weight: 700;
}
.contact-info-box .ci-item p, .contact-info-box .ci-item a {
    color: #555;
    margin: 0;
    font-size: 14px;
}
.contact-form-box .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    margin-bottom: 18px;
}
.contact-form-box .form-control:focus {
    border-color: var(--gbs-primary);
    box-shadow: none;
}
.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 8px;
}

/* ---- Hero slider ----
   Uses the theme's own proven .home-slider / .main_section wrapper
   (already auto-initialised as a slick carousel by assets/js/script.js)
   so header-to-hero spacing matches the original template exactly.
   Only the inner content styling below is custom. */
.home-slider .main_section { position: relative; margin: 0; }
/* The hero photos already have a clean, plain studio backdrop behind the text
   (matching the original template's flat-colour hero look) — only a very
   light edge tint is needed for legibility, not a heavy dark wash. */
/* A warm, light panel behind the text (not a dark tint) — gives every slide
   the same flat cream backdrop the original template used, so the heading
   can stay one consistent black/brown colour combination on all of them,
   regardless of how light or dark that spot in the photo is. */
.gbs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248,242,236,0.92) 0%, rgba(248,242,236,0.75) 40%, rgba(248,242,236,0.15) 68%, rgba(248,242,236,0) 80%);
}
.gbs-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    text-align: left;
}
.gbs-hero-content .section-eyebrow { color: var(--gbs-gold); }
.gbs-hero-content .script-accent {
    display: block;
    font-family: "Dancing Script", cursive;
    font-weight: 500;
    font-size: 42px;
    color: var(--gbs-primary);
    line-height: 1;
    margin-bottom: 2px;
}
.gbs-hero-content h1 {
    color: #fff;
    font-family: "Prata", serif;
    font-size: 48px;
    line-height: 1.22;
    margin-bottom: 10px;
    text-shadow: 0 3px 14px rgba(0,0,0,0.25);
    position: relative;
    padding-bottom: 20px;
}
.gbs-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--gbs-gold);
    border-radius: 2px;
}
/* Emphasis word stays the same colour as the rest of the heading (a jarring
   colour switch mid-sentence read as messy) — italics give it a gentle lift
   instead, matching the original template's clean single-tone headline. */
.gbs-hero-content h1 span { font-style: italic; }
.gbs-hero-content p {
    color: #f3e9de;
    font-size: 17px;
    margin-bottom: 30px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.gbs-hero-content .btn-group-hero { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust-row {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 30px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.hero-trust-row li {
    color: #f3e9de;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-trust-row li i {
    color: var(--gbs-gold);
    font-size: 15px;
}
/* Modifier for hero slides whose photo has a light/plain backdrop behind the
   text (e.g. global images/3.jpg) — dark text instead of white. */
.gbs-hero-content--dark { color: #262626; }
.gbs-hero-content--dark .script-accent { color: var(--gbs-primary); }
.gbs-hero-content--dark h1 { color: #262626; text-shadow: none; }
.gbs-hero-content--dark h1::after { background: var(--gbs-primary); }
.gbs-hero-content--dark p { color: #5a5a5a; text-shadow: none; }
.gbs-hero-content--dark .hero-trust-row { border-top-color: rgba(0,0,0,0.15); }
.gbs-hero-content--dark .hero-trust-row li { color: #5a5a5a; }
.gbs-hero-overlay.gbs-hero-overlay--none { background: none; }
.home-slider.slick-slider .slick-dots { bottom: 24px; }
.home-slider.slick-slider .slick-dots li button:before { color: #fff; opacity: .6; font-size: 10px; }
.home-slider.slick-slider .slick-dots li.slick-active button:before { opacity: 1; color: var(--gbs-gold); }
/* The theme's own .main_section is a fixed 86vh with overflow:hidden — on
   short or landscape mobile screens that clips the bottom of the hero text
   (trust row / buttons) instead of shrinking to fit. A min-height plus a
   capped height on small screens keeps everything visible. */
@media (max-width: 991px) {
    .gbs-hero-content .script-accent { font-size: 34px; }
    .gbs-hero-content h1 { font-size: 36px; }
}
@media (max-width: 767px) {
    .home-slider .main_section { height: auto; min-height: 620px; padding: 90px 0 50px; }
    .home-slider .main_section .container.h-100,
    .home-slider .main_section .row.h-100 { height: auto !important; }
    /* The hero photos are wide landscape shots with the subject positioned
       in the right third and a plain backdrop filling the rest (designed
       for text-on-left on a wide desktop image). On a tall mobile crop,
       background-size:cover + position:center lands squarely on that empty
       backdrop, so the photo looked "missing". Shifting to the right edge
       brings the actual subject into frame instead. */
    .home-slider .main_section { background-position: right center !important; }
    .gbs-hero-overlay {
        background: linear-gradient(180deg, rgba(248,242,236,0.9) 0%, rgba(248,242,236,0.88) 60%, rgba(248,242,236,0.72) 100%);
    }
    .gbs-hero-content .script-accent { font-size: 28px; }
    .gbs-hero-content h1 { font-size: 26px; padding-bottom: 14px; }
    .gbs-hero-content p { font-size: 15px; margin-bottom: 22px; }
    .hero-trust-row { gap: 8px 18px; margin-top: 20px; padding-top: 14px; }
    .gbs-hero-content .btn-group-hero .btn_dark { padding: 12px 22px; font-size: 12px; }
}
@media (max-width: 575px) {
    .home-slider .main_section { min-height: 560px; }
    .gbs-hero-content .script-accent { font-size: 24px; }
    .gbs-hero-content h1 { font-size: 22px; }
    .gbs-hero-content .btn-group-hero { gap: 10px; }
    .gbs-hero-content .btn-group-hero .btn_dark { width: 100%; text-align: center; }
}
@media (max-width: 767px) and (orientation: landscape) {
    .home-slider .main_section { min-height: 460px; padding: 70px 0 40px; }
}

/* ---- Floating WhatsApp button ---- */
.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform .2s;
}
.wa-float:hover {
    color: #fff;
    transform: scale(1.08);
}
/* The theme's own "scroll to top" button (.tap-top) sits at the same
   bottom-right corner as our WhatsApp float and, once it appears on scroll,
   visibly overlaps/peeks out behind it. Stack it neatly above instead. */
.tap-top {
    right: 26px !important;
    bottom: 96px !important;
}
@media (max-width: 767px) {
    .tap-top { bottom: 86px !important; }
}

/* ---- Misc ---- */
.section-title-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 46px;
}
.about-highlight-list {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}
.about-highlight-list li {
    padding: 6px 0 6px 30px;
    position: relative;
    color: #444;
}
.about-highlight-list li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--gbs-primary);
}
.form-msg-success {
    background: #e5f7ea;
    color: #1e7c3f;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.form-msg-error {
    background: #fdeaea;
    color: #b32424;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ---- Sweet success popup ---- */
.sweet-modal .modal-content {
    border: none;
    border-radius: 16px;
    text-align: center;
    padding: 40px 30px 34px;
}
.sweet-modal .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
}
.sweet-modal .sweet-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #e5f7ea;
    color: #1e7c3f;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    animation: sweetPop .45s cubic-bezier(.26,1.36,.6,1);
}
.sweet-modal h4 {
    font-family: "Prata", serif;
    margin-bottom: 12px;
    color: #262626;
}
.sweet-modal p {
    color: #666;
    margin-bottom: 24px;
}
@keyframes sweetPop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); }
}
