/* Custom Variables & Setup */
:root {
    --primary: #024671;
    --secondary: #90b722;
    --secondary-dark: #27953b;
    --neutral-gray: #535353;
    --pure-white: #fcfcfc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--neutral-gray);
    background-color: var(--pure-white);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Utility Colors */
.text-brand-primary { color: var(--primary) !important; }
.text-brand-secondary { color: var(--secondary) !important; }
.text-brand-secondary-dark { color: var(--secondary-dark) !important; }
.text-brand-pure-white { color: var(--pure-white) !important; }
.bg-brand-primary { background-color: var(--primary) !important; }
.bg-brand-secondary { background-color: var(--secondary) !important; }

.text-gradient-primary {
    background: linear-gradient(to right, var(--primary),var(--primary), var(--secondary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Components */
.navbar-custom {
    background-color: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(2, 70, 113, 0.1);
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--secondary-dark) !important; }

.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: url(../img/hero.jpeg) center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgb(189 185 185) 0%, rgba(189, 185, 185, 0.8) 50%, transparent 100%);
}

.btn-brand {
    background-color: var(--primary);
    color: var(--pure-white);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}
.btn-brand:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #fff;
}

.btn-outline-brand {
    background-color: transparent;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}
.btn-outline-brand:hover {
    background-color: rgba(2, 70, 113, 0.05);
    color: var(--primary);
}

.glass-card {
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 70, 113, 0.08);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 70, 113, 0.12); 
}

.advantage-card {
    background: rgba(252, 252, 252, 0.1);
    border: 1px solid rgba(252, 252, 252, 0.2);
    border-radius: 1rem;
    transition: border-color 0.3s ease;
}
.advantage-card:hover { border-color: var(--secondary); }

.image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.image-wrapper img {
    transition: transform 0.7s ease;
}
.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-wa::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
