/**
 * Blank Theme Elements - Styles
 */

/* =========================================
   COMMON STYLES
   ========================================= */
.bt-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.bt-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    text-decoration: none;
}
.bt-btn-primary {
    background-color: #0073aa;
    color: #ffffff;
}
.bt-btn-primary:hover {
    color: #ffffff;
}
.bt-btn-secondary {
    background-color: transparent;
    border-color: #0073aa;
    color: #0073aa;
}
.bt-btn-secondary:hover {
    background-color: #0073aa;
    color: #ffffff;
}
.bt-btn-light {
    background-color: #ffffff;
    color: #333333;
}
.bt-btn-dark {
    background-color: #333333;
    color: #ffffff;
}

/* =========================================
   ICON BOX
   ========================================= */
.bt-icon-box {
    padding: 20px;
}
.bt-icon-box-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.bt-icon-box-link:hover {
    text-decoration: none;
}
.bt-icon-box-icon {
    margin-bottom: 15px;
}
.bt-icon-box-heading {
    margin: 0 0 10px 0;
    font-weight: 600;
}
.bt-icon-box-desc {
    margin: 0;
    line-height: 1.6;
}
.bt-align-center {
    text-align: center;
}
.bt-align-left {
    text-align: left;
}
.bt-align-right {
    text-align: right;
}

/* =========================================
   CALL TO ACTION
   ========================================= */
.bt-cta {
    border-radius: 6px;
}
.bt-cta-centered {
    text-align: center;
}
.bt-cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.bt-cta-content {
    flex: 1;
    min-width: 200px;
}
.bt-cta-heading {
    margin: 0 0 10px 0;
    font-weight: 700;
}
.bt-cta-subtext {
    margin: 0 0 20px 0;
    line-height: 1.6;
}
.bt-cta-inline .bt-cta-subtext {
    margin-bottom: 0;
}
.bt-cta-button {
    flex-shrink: 0;
}
.bt-cta-centered .bt-cta-button {
    margin-top: 20px;
}

/* =========================================
   TESTIMONIAL
   ========================================= */
.bt-testimonial {
    padding: 30px;
}
.bt-testimonial-card {
    background: #f9f9f9;
    border-radius: 8px;
}
.bt-testimonial-bordered {
    border: 2px solid #eeeeee;
    border-radius: 8px;
}
.bt-testimonial-rating {
    margin-bottom: 15px;
}
.bt-testimonial-rating .fa-star {
    color: #ffc107;
    font-size: 18px;
}
.bt-testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}
.bt-testimonial-quote::before {
    content: '\201C';
    font-size: 48px;
    line-height: 0;
    vertical-align: -20px;
    opacity: 0.3;
    margin-right: 5px;
}
.bt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.bt-align-center .bt-testimonial-author {
    justify-content: center;
}
.bt-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.bt-testimonial-author-info {
    display: flex;
    flex-direction: column;
}
.bt-testimonial-name {
    font-weight: 600;
    font-size: 16px;
}
.bt-testimonial-title {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================================
   TEAM MEMBER
   ========================================= */
.bt-team-member {
    text-align: center;
}
.bt-team-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}
.bt-team-photo {
    position: relative;
    overflow: hidden;
}
.bt-team-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.bt-shape-rounded img {
    border-radius: 8px;
}
.bt-shape-circle img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 20px auto 0;
}
.bt-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.bt-team-photo:hover .bt-team-overlay {
    opacity: 1;
}
.bt-team-overlay .bt-team-social a {
    color: #ffffff;
    font-size: 20px;
}
.bt-team-info {
    padding: 20px;
}
.bt-team-name {
    margin: 0 0 5px 0;
    font-weight: 600;
}
.bt-team-title {
    display: block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}
.bt-team-bio {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.bt-team-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}
.bt-team-contact a {
    font-size: 14px;
    text-decoration: none;
}
.bt-team-contact a:hover {
    text-decoration: underline;
}
.bt-team-contact i {
    width: 20px;
}
.bt-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.bt-team-social a {
    font-size: 18px;
    color: #333333;
    transition: color 0.3s ease;
}
.bt-team-social a:hover {
    color: #0073aa;
}

/* =========================================
   STATS COUNTER
   ========================================= */
.bt-stats {
    text-align: center;
    padding: 20px;
}
.bt-stats-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0073aa;
}
.bt-stats-icon img {
    max-width: 48px;
    height: auto;
}
.bt-stats-number {
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}
.bt-stats-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* =========================================
   PRICING TABLE
   ========================================= */
.bt-pricing {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bt-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.bt-pricing-featured {
    z-index: 1;
}
.bt-pricing-featured:hover {
    transform: translateY(-5px);
}

/* Pricing Table Row Container */
.bt-pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.bt-pricing-row .bt-pricing {
    flex: 1 1 280px;
    max-width: 350px;
    min-width: 250px;
}
/* Fixed column layouts */
.bt-pricing-cols-2 .bt-pricing {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}
.bt-pricing-cols-3 .bt-pricing {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}
.bt-pricing-cols-4 .bt-pricing {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
}
@media (max-width: 991px) {
    .bt-pricing-cols-3 .bt-pricing,
    .bt-pricing-cols-4 .bt-pricing {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}
@media (max-width: 767px) {
    .bt-pricing-row {
        flex-direction: column;
        align-items: center;
    }
    .bt-pricing-row .bt-pricing,
    .bt-pricing-cols-2 .bt-pricing,
    .bt-pricing-cols-3 .bt-pricing,
    .bt-pricing-cols-4 .bt-pricing {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}
.bt-pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #0073aa;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bt-pricing-header {
    padding: 30px 20px;
    border-bottom: 3px solid #0073aa;
}
.bt-pricing-featured .bt-pricing-header {
    padding-top: 55px;
}
.bt-pricing-plan {
    margin: 0 0 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bt-pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.bt-pricing-currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}
.bt-pricing-amount {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}
.bt-pricing-period {
    font-size: 14px;
    opacity: 0.7;
    align-self: flex-end;
    margin-bottom: 10px;
}
.bt-pricing-features {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}
.bt-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.bt-pricing-features li:last-child {
    border-bottom: none;
}
.bt-pricing-features .fa-check {
    margin-right: 8px;
}
.bt-pricing-footer {
    padding: 0 20px 30px;
}
.bt-pricing-footer .bt-btn {
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
   SPACER
   ========================================= */
.bt-spacer {
    display: block;
    width: 100%;
}

/* =========================================
   DIVIDER
   ========================================= */
.bt-divider-wrap {
    width: 100%;
}
.bt-divider {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
}
.bt-divider-gradient {
    border: none;
}

/* =========================================
   BRAND INFO
   ========================================= */
.bt-brand-phone,
.bt-brand-email,
.bt-brand-address,
.bt-brand-hours {
    display: inline-block;
}
.bt-brand-phone.bt-display-block,
.bt-brand-email.bt-display-block,
.bt-brand-address.bt-display-block,
.bt-brand-hours.bt-display-block {
    display: block;
    width: 100%;
}
.bt-brand-phone i,
.bt-brand-email i,
.bt-brand-address i,
.bt-brand-hours i {
    margin-right: 8px;
}
.bt-brand-label {
    font-weight: 600;
}
.bt-brand-address.bt-format-block {
    display: block;
}
.bt-hours-full {
    display: block;
}
/* Links inherit color unless overridden */
.bt-brand-phone a,
.bt-brand-email a,
.bt-brand-address a {
    color: inherit;
    text-decoration: none;
}
.bt-brand-phone a:hover,
.bt-brand-email a:hover,
.bt-brand-address a:hover {
    text-decoration: underline;
}

/* =========================================
   SERVICE CARD
   ========================================= */
.bt-service-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bt-service-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
/* Equal height service cards in WPBakery rows */
.vc_row .vc_column_container > .vc_column-inner > .wpb_wrapper:has(.bt-service-card) {
    height: 100%;
}
.vc_row .vc_column_container:has(.bt-service-card) {
    display: flex;
}
.vc_row .vc_column_container:has(.bt-service-card) > .vc_column-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.vc_row .vc_column_container:has(.bt-service-card) .wpb_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vc_row .vc_column_container:has(.bt-service-card) .wpb_wrapper > div {
    flex: 1;
}
.bt-shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.bt-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.bt-service-image-wrap {
    position: relative;
    overflow: hidden;
}
.bt-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bt-service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bt-service-content.bt-align-center { text-align: center; align-items: center; }
.bt-service-content.bt-align-left { text-align: left; align-items: flex-start; }
.bt-service-content.bt-align-right { text-align: right; align-items: flex-end; }
.bt-align-center { text-align: center; }
.bt-align-left { text-align: left; }
.bt-align-right { text-align: right; }
.bt-service-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.bt-service-desc {
    margin: 0 0 15px 0;
    line-height: 1.6;
    flex: 1;
}
/* Service Card - Overlay Style */
.bt-service-overlay .bt-service-image-wrap {
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}
.bt-service-overlay .bt-service-image-wrap .bt-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bt-service-overlay .bt-service-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}
.bt-service-overlay .bt-service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Service Card - Circle Style */
.bt-service-circle .bt-service-circle-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 20px 0;
}
.bt-service-circle-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.bt-service-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Service Card - Horizontal Style */
.bt-service-horizontal-wrap {
    display: flex;
    align-items: stretch;
}
.bt-service-horizontal .bt-service-image-col {
    flex: 0 0 40%;
    max-width: 40%;
}
.bt-service-horizontal .bt-service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Aspect Ratios */
.bt-aspect-square .bt-service-image-wrap { padding-bottom: 100%; position: relative; }
.bt-aspect-portrait .bt-service-image-wrap { padding-bottom: 133%; position: relative; }
.bt-aspect-landscape .bt-service-image-wrap { padding-bottom: 56.25%; position: relative; }
.bt-aspect-square .bt-service-image,
.bt-aspect-portrait .bt-service-image,
.bt-aspect-landscape .bt-service-image {
    position: absolute;
    top: 0;
    left: 0;
}
/* Service Card Buttons */
.bt-service-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
    font-weight: 500;
}
.bt-service-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}
.bt-btn-solid {
    color: #fff;
}
.bt-btn-outline {
    background: transparent;
    border: 2px solid;
}
.bt-btn-arrow {
    background: transparent;
    padding: 10px 0;
}
.bt-btn-circle_icon {
    background: transparent;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.bt-btn-circle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
}
/* Button Sizes */
.bt-btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}
.bt-btn-md {
    padding: 10px 20px;
    font-size: 14px;
}
.bt-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}
.bt-btn-xl {
    padding: 18px 36px;
    font-size: 18px;
}
/* Button arrow/circle_icon size adjustments */
.bt-btn-arrow.bt-btn-sm,
.bt-btn-circle_icon.bt-btn-sm {
    padding: 6px 0;
    font-size: 13px;
}
.bt-btn-arrow.bt-btn-lg,
.bt-btn-circle_icon.bt-btn-lg {
    padding: 14px 0;
    font-size: 16px;
}
.bt-btn-arrow.bt-btn-xl,
.bt-btn-circle_icon.bt-btn-xl {
    padding: 18px 0;
    font-size: 18px;
}
/* Button Modifiers */
.bt-btn-full {
    display: block;
    width: 100%;
    text-align: center;
}
.bt-btn-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Button icon spacing */
.bt-service-btn i {
    transition: transform 0.3s ease;
}
.bt-service-btn:hover i {
    transform: translateX(3px);
}
.bt-service-btn i:first-child {
    margin-right: 6px;
}
.bt-service-btn i:last-child {
    margin-left: 6px;
}

/* =========================================
   INFO LIST
   ========================================= */
.bt-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bt-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bt-info-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bt-info-text {
    flex: 1;
}
/* Info List Layouts */
.bt-info-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.bt-info-inline .bt-info-item {
    flex: 0 0 auto;
}
.bt-info-stacked .bt-info-item {
    margin-bottom: 10px;
}
.bt-info-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.bt-info-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}
/* Info Icon Styles */
.bt-icon-circle .bt-info-icon,
.bt-icon-square .bt-info-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
}
.bt-icon-circle .bt-info-icon {
    border-radius: 50%;
}
.bt-icon-square .bt-info-icon {
    border-radius: 4px;
}
.bt-text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.bt-text-small {
    font-size: 12px;
}
.bt-text-large {
    font-size: 16px;
}

/* =========================================
   IMAGE CARD OVERLAY
   ========================================= */
.bt-image-overlay {
    position: relative;
    overflow: hidden;
    display: flex;
}
.bt-overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.bt-hover-zoom:hover .bt-overlay-image {
    transform: scale(1.05);
}
.bt-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.bt-overlay-content {
    position: absolute;
    color: #fff;
    padding: 25px;
    z-index: 2;
    max-width: 100%;
}
/* Content Positions */
.bt-content-bottom-left .bt-overlay-content { bottom: 0; left: 0; }
.bt-content-bottom-center .bt-overlay-content { bottom: 0; left: 50%; transform: translateX(-50%); text-align: center; }
.bt-content-bottom-right .bt-overlay-content { bottom: 0; right: 0; text-align: right; }
.bt-content-center .bt-overlay-content { top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.bt-content-top-left .bt-overlay-content { top: 0; left: 0; }
.bt-overlay-title {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.bt-overlay-subtitle {
    margin: 0 0 15px 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.bt-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.bt-overlay-btn-circle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 4;
}
.bt-overlay-btn-circle:hover {
    transform: scale(1.1);
}
.bt-overlay-btn-text {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 4;
}
.bt-overlay-btn-text:hover {
    text-decoration: underline;
}
.bt-overlay-btn-solid {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 4;
    transition: opacity 0.3s ease;
}
.bt-overlay-btn-solid:hover {
    opacity: 0.9;
}

/* =========================================
   HOTSPOT IMAGE
   ========================================= */
.bt-hotspot-container {
    position: relative;
    display: block;
    width: 100%;
    line-height: 0;
}
.bt-hotspot-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.bt-hotspot-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}
.bt-marker-inner {
    display: flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}
.bt-hotspot-marker:hover .bt-marker-inner {
    transform: scale(1.2);
}
/* Pulse Ring Animation */
.bt-marker-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: bt-pulse 2s infinite;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 0;
}
@keyframes bt-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
/* Pulse Dot Style */
.bt-marker-pulse .bt-marker-inner {
    width: 16px;
    height: 16px;
}
/* Simple Dot Style (smaller, no pulse) */
.bt-marker-dot .bt-marker-inner {
    width: 12px;
    height: 12px;
}
/* Plus Marker */
.bt-marker-plus .bt-marker-inner {
    width: 24px;
    height: 24px;
    font-size: 12px;
}
/* Number Marker */
.bt-marker-number .bt-marker-inner {
    width: 26px;
    height: 26px;
    font-size: 12px;
}
/* Hotspot Tooltip */
.bt-hotspot-tooltip {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 50;
    line-height: 1.5;
}
.bt-hotspot-marker:hover,
.bt-hotspot-marker.bt-active {
    z-index: 20;
}
/* Tooltip Positions */
.bt-tooltip-left .bt-hotspot-tooltip {
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
}
.bt-tooltip-right .bt-hotspot-tooltip {
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
}
.bt-tooltip-top .bt-hotspot-tooltip {
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
}
.bt-tooltip-bottom .bt-hotspot-tooltip {
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
}
/* Show tooltip on hover */
.bt-trigger-hover .bt-hotspot-marker:hover .bt-hotspot-tooltip,
.bt-trigger-click .bt-hotspot-marker.bt-active .bt-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}
.bt-tooltip-title {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}
.bt-tooltip-desc {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 13px;
}
.bt-tooltip-link {
    display: inline-block;
    color: #0073aa;
    font-size: 13px;
    text-decoration: none;
}
.bt-tooltip-link:hover {
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .bt-info-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .bt-cta-inline {
        text-align: center;
        justify-content: center;
    }
    .bt-cta-inline .bt-cta-content {
        width: 100%;
    }
    .bt-pricing-featured {
        transform: none;
    }
    .bt-pricing-featured:hover {
        transform: translateY(-5px);
    }
    .bt-testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    /* Service Card Responsive */
    .bt-service-horizontal-wrap {
        flex-direction: column;
    }
    .bt-service-horizontal .bt-service-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* Info List Responsive */
    .bt-info-inline {
        flex-direction: column;
    }
    .bt-info-grid-2,
    .bt-info-grid-3 {
        grid-template-columns: 1fr;
    }
    /* Hotspot Responsive */
    .bt-hotspot-tooltip {
        width: 180px !important;
        font-size: 12px;
    }
    /* Image Overlay Responsive */
    .bt-overlay-content {
        padding: 15px !important;
    }
    .bt-overlay-title {
        font-size: 1.2rem !important;
    }
    .bt-overlay-subtitle {
        font-size: 0.9rem !important;
    }
}
