:root {
    --branch-primary: #00897B;
    --branch-secondary: #00695C;
    --branch-accent: #26A69A;
    --branch-light: #E0F2F1;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-500: #6c757d;
    --gray-700: #343a40;
    --gray-900: #1a1a2e;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1);
    --radius-lg: .75rem;
    --radius-xl: 1rem;
    --radius-full: 50rem;
    --transition: .3s ease
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-700);
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-900)
}

a {
    color: var(--branch-primary);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--branch-secondary)
}

.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--branch-light);
    border-top-color: var(--branch-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.top-bar {
    background: var(--branch-secondary);
    color: #fff;
    padding: .5rem 0;
    font-size: .85rem
}

.top-info {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0
}

.top-info a {
    color: #fff
}

.top-link {
    color: rgba(255, 255, 255, .8);
    margin-right: 1rem
}

.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000
}

.navbar {
    padding: .75rem 0
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.navbar-brand img {
    height: 50px
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--branch-primary)
}

.brand-tagline {
    font-size: .7rem;
    color: var(--gray-500);
    text-transform: uppercase
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: .75rem 1rem !important
}

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

.btn-nav {
    background: var(--branch-primary) !important;
    color: #fff !important;
    border-radius: var(--radius-full);
    padding: .5rem 1.5rem !important
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg)
}

.dropdown-item:hover {
    background: var(--branch-light);
    color: var(--branch-primary)
}

.btn-primary {
    background: var(--branch-primary);
    border-color: var(--branch-primary)
}

.btn-primary:hover {
    background: var(--branch-secondary)
}

.section {
    padding: 5rem 0
}

.section-gray {
    background: var(--gray-100)
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-subtitle {
    color: var(--branch-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .875rem;
    display: block;
    margin-bottom: .5rem
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem
}

.page-header {
    background: linear-gradient(135deg, var(--branch-secondary), var(--branch-primary));
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center
}

.page-header h1 {
    color: #fff
}

.card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.branch-footer {
    background: var(--gray-900);
    color: #94a3b8
}

.footer-top {
    padding: 4rem 0
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem
}

.footer-widget h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    position: relative
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--branch-primary)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: .5rem
}

.footer-links a {
    color: #94a3b8
}

.footer-links a:hover {
    color: var(--branch-accent);
    padding-left: 5px
}

.footer-contact {
    list-style: none;
    padding: 0
}

.footer-contact li {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem
}

.footer-contact i {
    color: var(--branch-primary);
    width: 16px
}

.footer-contact a {
    color: #94a3b8
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.social-links a:hover {
    background: var(--branch-primary)
}

.footer-bottom {
    background: rgba(0, 0, 0, .2);
    padding: 1.25rem 0;
    font-size: .9rem
}

.footer-bottom a {
    color: var(--branch-accent)
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--branch-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

@media(max-width:991px) {
    .top-bar .text-end {
        display: none !important
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg)
    }
}