/* assets/css/style.css */
:root {
    --bs-primary: #002060; /* Navy Blue */
    --bs-info: #00a2e8; /* Sky Blue */
    --bs-dark: #2c3e50; /* Dark Grey */
    --bs-light: #f8f9fa; /* Light Grey */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--bs-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
.letter-spacing-1 { letter-spacing: 1px; }
.leading-tight { line-height: 1.2; }

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 600;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bs-info) !important;
}

/* Glassmorphism */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Cards */
.service-card, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15) !important;
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-1689001234 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom-1689001234 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.custom-shape-divider-bottom-1689001234 .shape-fill {
    fill: #f8f9fa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1050;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s ease;
}
.float-whatsapp:hover {
    color: white;
    transform: scale(1.1);
}
.my-float {
    margin-top: 16px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: var(--bs-primary);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 99;
    transition: background-color 0.3s, transform 0.3s;
}
.back-to-top:hover {
    background-color: var(--bs-info);
    color: white;
    transform: translateY(-3px);
}

/* Process Timeline */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e9ecef;
    z-index: 0;
}
.process-timeline > div {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}
