@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #121212;
    --darker-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-color: #e5e5e5;
    --heading-color: #ffffff;
    --text-muted: #999999;
    --accent-color: #d32f2f;
    --accent-hover: #b71c1c;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #128c7e;
    --border-color: #2a2a2a;
    --navbar-bg: #121212;
    --topbar-bg: #0f0f0f;
    --footer-bg: #121212;
    --link-hover-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: 0;
}

a {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
}

.bg-dark {
    background-color: var(--darker-bg) !important;
}

.font-black { font-weight: 800; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.btn-accent,
.btn-whatsapp,
.btn-outline-light {
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    padding: 14px 28px;
    text-decoration: none;
}

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: #ffffff;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    border: none;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: #ffffff;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 13px 26px;
}

.btn-outline-light:hover {
    background-color: var(--card-bg);
    border-color: var(--link-hover-color);
    color: var(--heading-color);
}

.site-header {
    background-color: var(--navbar-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    transition: box-shadow 0.25s ease, background-color 0.25s ease, backdrop-filter 0.25s ease;
    z-index: 1030;
}

.site-header.is-scrolled {
    background-color: rgba(18, 18, 18, 0.82) !important;
    backdrop-filter: blur(22px) saturate(190%);
    -webkit-backdrop-filter: blur(22px) saturate(190%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
}

html[data-theme="light"] .site-header.is-scrolled {
    background-color: rgba(248, 250, 252, 0.88) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.topbar {
    background-color: var(--topbar-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.9rem;
    max-height: 74px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.site-header.is-compact .topbar {
    max-height: 0;
    opacity: 0;
}

.topbar-inner {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 42px;
    padding: 7px 0;
}

.topbar-contact,
.topbar-social {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .topbar-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.16);
    }
    
    /* Hide the vertical separator right before the floating working hours block to keep it perfectly clean */
    .topbar-item:has(+ #topbarWorkingHoursContainer)::after {
        display: none !important;
    }
    
    #topbarWorkingHoursContainer {
        margin-left: auto;
    }
    
    .topbar-contact {
        gap: 10px 20px;
        width: 100%;
    }
}

.topbar-link,
.topbar-info,
.topbar-social-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    gap: 7px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.topbar-link:hover,
.topbar-social-link:hover {
    color: #ffffff;
}

.topbar-link i {
    transition: all 0.2s ease;
}

.topbar-link i.bi-telephone-fill {
    color: var(--accent-color);
}

.topbar-info i.bi-clock-fill {
    color: #ffffff;
}

.topbar-link i.bi-geo-alt-fill {
    color: #2f80ed;
}

.topbar-link i.bi-whatsapp {
    color: var(--whatsapp-color);
}

.topbar-link:hover i.bi-telephone-fill {
    color: #ff5252;
    text-shadow: 0 0 8px rgba(255, 82, 82, 0.5);
}

.topbar-link:hover i.bi-geo-alt-fill {
    color: #3b8ff5;
    text-shadow: 0 0 8px rgba(47, 128, 237, 0.55);
}

.topbar-link:hover i.bi-whatsapp {
    color: #34e073;
    text-shadow: 0 0 8px rgba(52, 224, 115, 0.5);
}

/* Clipboard Copy Button Styling */
.topbar-copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    padding: 2px 4px;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    margin-left: 2px;
}

.topbar-item:hover .topbar-copy-btn {
    opacity: 1;
}

@media (max-width: 991px) {
    .topbar-copy-btn {
        opacity: 0.6;
    }
    
    .topbar-whatsapp-item {
        display: none !important;
    }
}

.topbar-copy-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
}

.topbar-copy-btn.copied {
    color: var(--whatsapp-color) !important;
}

/* Dynamic Live Open/Closed Status Badge */
.topbar-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    line-height: 1.2;
}

.topbar-status-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.topbar-status-badge.status-open {
    background-color: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.24);
}

.topbar-status-badge.status-closed {
    background-color: rgba(244, 67, 54, 0.12);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.24);
}

.topbar-status-badge.status-open .status-dot {
    background-color: #25d366;
    animation: pulseOpen 2s infinite;
    box-shadow: 0 0 6px #25d366;
}

.topbar-status-badge.status-closed .status-dot {
    background-color: #f44336;
    box-shadow: 0 0 6px #f44336;
}

@keyframes pulseOpen {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.topbar-social-link {
    font-size: 1rem;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.template-navbar {
    background-color: transparent !important;
    padding: 1rem 0;
    transition: padding 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header.is-scrolled .template-navbar {
    padding: 0.65rem 0;
}

.site-header.is-compact .template-navbar {
    padding: 0.45rem 0;
}

.navbar-brand {
    color: var(--heading-color) !important;
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

.navbar-brand i {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.navbar-brand:hover i {
    transform: rotate(15deg) scale(1.15);
    color: #ff5252 !important;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.6);
}

.site-logo {
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem !important;
    position: relative;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--link-hover-color) !important;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--heading-color) !important;
}

.nav-link.active::before {
    transform: scaleX(1);
    background: var(--accent-color);
}

.navbar-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Shimmer Sweep CTA Button */
.navbar-actions .btn-outline-light {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.navbar-actions .btn-outline-light::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.24) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0s;
    opacity: 0;
    z-index: -1;
}

.navbar-actions .btn-outline-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.navbar-actions .btn-outline-light:hover::after {
    animation: shimmerSweep 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 1;
}

@keyframes shimmerSweep {
    0% {
        left: -60%;
    }
    100% {
        left: 140%;
    }
}

/* Spin Morph Theme Toggle */
.theme-toggle {
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--heading-color);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.theme-toggle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(211, 47, 47, 0.15);
}

.theme-icon {
    font-size: 1.12rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

html[data-theme="dark"] .theme-icon-dark {
    transform: rotate(360deg) scale(0);
    opacity: 0;
    position: absolute;
}

html[data-theme="dark"] .theme-icon-light {
    transform: rotate(0) scale(1);
    opacity: 1;
}

html[data-theme="light"] .theme-icon-light {
    transform: rotate(-360deg) scale(0);
    opacity: 0;
    position: absolute;
}

html[data-theme="light"] .theme-icon-dark {
    transform: rotate(0) scale(1);
    opacity: 1;
}

.navbar-toggler {
    padding: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--heading-color);
    display: block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--heading-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    left: 0;
    border: none !important;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Animation when expanded (open state in Bootstrap) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.section-padding {
    padding: 112px 0;
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bg-darker {
    background-color: var(--darker-bg);
}

.card-premium {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card-premium:hover {
    border-color: color-mix(in srgb, var(--accent-color) 42%, var(--border-color));
    transform: translateY(-2px);
}

.card-premium .text-white,
.card-premium h1,
.card-premium h2,
.card-premium h3,
.card-premium h4,
.card-premium h5,
.card-premium h6 {
    color: var(--heading-color) !important;
}

html[data-theme="light"] .text-white:not(.btn):not(.badge):not(.topbar-link):not(.topbar-info) {
    color: var(--heading-color) !important;
}

.hero-badge-soft {
    background-color: color-mix(in srgb, var(--card-bg) 84%, transparent);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.hero-image {
    height: 500px;
    object-fit: cover;
}

.hero-slider {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    min-height: 500px;
}

.hero-slide {
    inset: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.035) translateX(18px);
    transition: opacity 0.75s ease, transform 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    position: relative;
    transform: scale(1) translateX(0);
}

.hero-slide figcaption {
    backdrop-filter: blur(14px);
    background-color: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    bottom: 24px;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    left: 24px;
    padding: 10px 15px;
    position: absolute;
    z-index: 2;
}

.hero-slider-progress {
    background-color: rgba(255, 255, 255, 0.16);
    height: 3px;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
}

.hero-slider-progress span {
    background-color: var(--accent-color);
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    width: 100%;
}

.hero-slider.is-playing .hero-slider-progress span {
    animation: heroProgress 5.2s linear forwards;
}

.hero-slider-control {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    width: 44px;
    z-index: 4;
}

.hero-slider:hover .hero-slider-control,
.hero-slider:focus-within .hero-slider-control {
    opacity: 1;
}

.hero-slider-control:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
}

.hero-slider-control-prev {
    left: 20px;
}

.hero-slider-control-next {
    right: 20px;
}

.hero-slider-dots {
    bottom: 24px;
    display: flex;
    gap: 9px;
    position: absolute;
    right: 24px;
    z-index: 4;
}

.hero-slider-dot {
    background-color: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 999px;
    height: 10px;
    padding: 0;
    transition: background-color 0.2s ease, width 0.2s ease;
    width: 10px;
}

.hero-slider-dot.is-active {
    background-color: #ffffff;
    width: 34px;
}

@keyframes heroProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.page-hero {
    background-color: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 74px 0 82px;
}

.page-hero-content {
    max-width: 860px;
}

.page-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
}

.page-description {
    color: var(--text-muted);
    font-size: 1.18rem;
    margin-bottom: 0;
    max-width: 760px;
}

.breadcrumb-nav {
    margin-bottom: 26px;
}

.breadcrumb-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item-template {
    align-items: center;
    color: var(--text-muted);
    display: inline-flex;
    font-size: 0.92rem;
    gap: 8px;
}

.breadcrumb-item-template::after {
    color: var(--text-muted);
    content: "/";
}

.breadcrumb-item-template:last-child::after {
    content: "";
}

.breadcrumb-item-template a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-item-template a:hover,
.breadcrumb-item-template.is-current {
    color: var(--heading-color);
}

.brand-logo-frame {
    height: 82px;
    width: 100%;
    padding: 4px;
}

.brand-logo {
    max-height: 64px;
    max-width: 156px;
    object-fit: contain;
    opacity: 0.92;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

html[data-theme="dark"] .brand-logo {
    filter: brightness(0) invert(1);
}

html[data-theme="light"] .brand-logo {
    filter: grayscale(1) brightness(0);
    opacity: 0.78;
}

.card-premium:hover .brand-logo {
    opacity: 1;
    transform: scale(1.03);
}

.icon-circle {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
}

.icon-circle .text-white,
.bg-accent .text-white,
.btn-accent .text-white,
.btn-whatsapp .text-white {
    color: #ffffff !important;
}

.icon-circle-bordered,
.map-frame,
.service-icon-frame {
    border: 1px solid var(--border-color);
}

.map-embed {
    border: 0;
    border-radius: 8px;
}

.service-icon-frame {
    height: 80px;
    width: 80px;
}

.service-icon {
    font-size: 2.5rem;
}

.contact-row {
    align-items: center;
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--heading-color);
    font-size: 1.18rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--accent-color);
}

.cta-box {
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
}

.feature-list li i {
    color: var(--text-color);
    margin-right: 8px;
}

.img-overlay-container {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.img-overlay-container::after {
    background: linear-gradient(to top, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.08) 100%);
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.legal-content {
    max-width: 920px;
}

.footer-modern {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 34px;
}

.footer-title {
    color: #ffffff !important;
}

.footer-text {
    color: rgba(255, 255, 255, 0.68);
}

.footer-list,
.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-list a,
.footer-contact-list a,
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.footer-list a:hover,
.footer-contact-list a:hover,
.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-contact-list li {
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    gap: 12px;
}

.footer-contact-list i {
    color: #ffffff;
    margin-top: 3px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 24px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.fab-container {
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    right: 24px;
    z-index: 1030;
}

.fab {
    align-items: center;
    border-radius: 50%;
    box-sizing: border-box;
    color: #ffffff;
    display: inline-flex;
    font-size: 20px;
    gap: 0;
    height: 56px;
    justify-content: center;
    min-width: 56px;
    width: 56px;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
    white-space: nowrap;
    transition:
        width 0.32s cubic-bezier(0.25, 0.8, 0.25, 1),
        min-width 0.32s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-radius 0.32s cubic-bezier(0.25, 0.8, 0.25, 1),
        padding 0.32s cubic-bezier(0.25, 0.8, 0.25, 1),
        gap 0.32s cubic-bezier(0.25, 0.8, 0.25, 1),
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
    flex-shrink: 0;
}

.fab span {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.32s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
    white-space: nowrap;
}

.fab:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border-radius: 28px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
    gap: 8px;
    padding: 0 18px;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #2bdf6e 0%, #0f7a6e 100%);
    width: 154px;
    min-width: 154px;
}

.fab-whatsapp:hover span {
    max-width: 100px;
    opacity: 1;
}

.fab-call {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border: none;
}

.fab-call:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, color-mix(in srgb, var(--accent-hover) 80%, #000) 100%);
    width: 112px;
    min-width: 112px;
}

.fab-call:hover span {
    max-width: 64px;
    opacity: 1;
}

.fab-map {
    background: linear-gradient(135deg, #2f80ed 0%, #1a56b0 100%);
    border: none;
}

.fab-map:hover {
    background: linear-gradient(135deg, #3b8ff5 0%, #1a56b0 100%);
    width: 140px;
    min-width: 140px;
}

.fab-map:hover span {
    max-width: 88px;
    opacity: 1;
}

.back-to-top {
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    bottom: 24px;
    color: var(--heading-color);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    left: 24px;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    width: 48px;
    z-index: 1030;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .site-header {
        position: sticky !important;
        top: 0;
        z-index: 1030;
    }

    .section-padding {
        padding: 76px 0;
    }

    .hero-image {
        height: 420px;
    }

    .hero-slider {
        min-height: 420px;
    }

    .topbar {
        max-height: 48px;
        font-size: 0.85rem;
        transition: max-height 0.28s ease, opacity 0.22s ease;
    }

    .topbar-inner {
        flex-direction: row; /* KEEP horizontal on mobile */
        justify-content: center;
        align-items: center;
        padding: 5px 0;
        gap: 12px;
        width: 100%;
    }

    .topbar-contact {
        gap: 12px;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        display: flex;
    }

    .topbar-contact::-webkit-scrollbar {
        display: none; /* Hide scrollbar on Chrome/Safari/Webkit */
    }

    .topbar-phone-item,
    .topbar-whatsapp-item,
    .topbar-address-item {
        display: none !important;
    }

    #topbarWorkingHoursContainer {
        margin-left: 0 !important;
    }

    .topbar-social {
        display: none !important;
    }

    .topbar-social-link {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    /* Premium floating glass card dropdown menu on mobile */
    .navbar-collapse {
        background-color: color-mix(in srgb, var(--card-bg) 96%, transparent);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        animation: slideDownMenu 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        overflow: hidden;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Staggered & styled nav links */
    .navbar-nav {
        gap: 8px;
    }

    .navbar-nav .nav-item .nav-link {
        color: var(--text-color) !important;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 12px 16px !important;
        border-radius: 8px;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link.active {
        background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
        color: var(--accent-color) !important;
        padding-left: 24px !important;
    }

    .navbar-nav .nav-item .nav-link::after {
        content: "\F285"; /* Bootstrap Icon arrow-right */
        font-family: "bootstrap-icons";
        font-size: 0.9rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .navbar-nav .nav-item .nav-link:hover::after,
    .navbar-nav .nav-item .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Unified & aligned mobile actions */
    .navbar-actions {
        border-top: 1px solid var(--border-color);
        margin-top: 16px;
        padding-top: 20px;
        display: flex;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .navbar-actions .btn-outline-light {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 10px 20px;
        height: 44px;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .navbar-actions .theme-toggle {
        flex: 0 0 44px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .hero-image {
        height: 340px;
    }

    .hero-slider {
        min-height: 340px;
    }

    .hero-slide figcaption {
        bottom: 16px;
        left: 16px;
        max-width: calc(100% - 98px);
    }

    .hero-slider-control {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
        right: 16px;
    }

    /* Keep location and working status visible on mobile! */
    .topbar-info {
        display: inline-flex;
    }

    .topbar-social {
        display: none; /* Hide social icons in the topbar on very small devices, as they are in the footer, to keep it uncluttered */
    }

    .topbar-inner {
        justify-content: center;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .site-logo {
        height: 28px;
        width: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .fab-container {
        bottom: 18px;
        right: 18px;
    }

    .fab {
        height: 54px;
        padding: 0;
        width: 54px;
    }

    .back-to-top {
        bottom: 18px;
        height: 44px;
        left: 18px;
        width: 44px;
    }

    .fab span {
        display: none;
    }
}
