@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    background-color: #fafaf9;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Blueprint Grid Pattern */
.blueprint-grid {
    background-image: linear-gradient(to right, rgba(30, 64, 175, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #111111 0%, #D4A843 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-8px) translateX(3px); }
    50% { transform: translateY(-15px) translateX(0px); }
    75% { transform: translateY(-8px) translateX(-3px); }
}
.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

/* Staggered Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Intersection Observer Trigger */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Badge Animations */
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
.badge-float {
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloatAlt {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}
.badge-float-alt {
    animation: badgeFloatAlt 5s ease-in-out infinite;
}

/* 3D Perspective */
.perspective-1000 {
    perspective: 1000px;
}
.preserve-3d {
    transform-style: preserve-3d;
}

/* Custom Shadows */
.shadow-glow {
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}
.shadow-glow-lg {
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.4);
}

/* Hide elements initially for staggered animations */
.opacity-0 {
    opacity: 0;
}
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float i {
    width: 24px;
    height: 24px;
}

.float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
}

/* Call */
.call {
    background-color: #0ea5e9;
}
/* Floating container */
.floating-icons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Common button style */
.float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

/* Hover effect */
.float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
}

.whatsapp i {
    font-size: 30px;
    color: #ffffff;
}

/* Call */
.call {
    background-color: #0ea5e9;
}

.call i {
    font-size: 26px;
    color: #ffffff;
}

