/* assets/css/custom.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-sans);
    scroll-behavior: smooth;
    background-color: #f8fafc; /* slate-50 */
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: var(--font-serif);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glassmorphism Styles */
.glass-nav {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.img-zoom-container {
    overflow: hidden;
}
.img-zoom {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-zoom-container:hover .img-zoom {
    transform: scale(1.1);
}

/* Text Gradient */
.text-gradient-teal {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Gradient Background */
.bg-animated-gradient {
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #111827, #020617);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom Swiper Styles */
.swiper-pagination-bullet-active {
    background: #0d9488 !important; /* teal-600 */
    width: 24px !important;
    border-radius: 4px !important;
}

/* Floating contact widget or badge animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Floating Action Button (FAB) & Menu Styles */
#fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#fab-main:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.6);
}

#fab-main.active {
    transform: rotate(135deg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.4);
}

#fab-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#fab-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
    color: #1e293b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(15px);
    opacity: 0;
    cursor: pointer;
}

#fab-menu.show .fab-item {
    transform: translateX(0);
    opacity: 1;
}

#fab-menu.show .fab-item:nth-child(1) { transition-delay: 50ms; }
#fab-menu.show .fab-item:nth-child(2) { transition-delay: 100ms; }
#fab-menu.show .fab-item:nth-child(3) { transition-delay: 150ms; }
#fab-menu.show .fab-item:nth-child(4) { transition-delay: 200ms; }

.fab-item:hover {
    transform: translateY(-3px) scale(1.05) !important;
    background: #ffffff;
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.2);
    color: #0d9488;
}

.fab-item.whatsapp {
    background: #25D366;
    border-color: #25d366;
    color: white;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.4);
}

.fab-item.whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: white;
    box-shadow: 0 12px 24px -6px rgba(37, 211, 102, 0.5);
}

.fab-item.active-lang {
    background: #0d9488;
    color: white;
    border-color: #0d9488;
}

.fab-item.active-lang:hover {
    background: #0d9488;
    color: white;
}

/* Hide Google Translate Top Bar & Widgets */
body {
    top: 0 !important;
}
.skiptranslate, .goog-logo-link, .goog-te-gadget span {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}
font {
    background-color: transparent !important;
    box-shadow: none !important;
}
iframe.goog-te-banner-frame {
    display: none !important;
}
body > .skiptranslate {
    display: none !important;
}


