/* ==========================================
   FINSAVE FINANCING - CUSTOM STYLES
   ========================================== */

/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root {
    /* FinSave Brand Colors - Green Theme */
    --primary-color: #5a8f3a;
    --primary-dark: #4a7530;
    --primary-light: #7cb956;
    --secondary-color: #6c757d;
    --success-color: #5a8f3a;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --green-gradient: linear-gradient(135deg, #7cb956 0%, #5a8f3a 100%);
    --gradient-primary: linear-gradient(135deg, #7cb956 0%, #5a8f3a 100%);
    --gradient-success: linear-gradient(135deg, #7cb956 0%, #4a7530 100%);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--warning-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.hero-slider-section {
    position: relative;
    margin-top: 76px;
}

.carousel-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.carousel-item .container {
    position: relative;
    z-index: 3;
}

.slide-content {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.slide-features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(90, 143, 58, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(90, 143, 58, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: var(--transition);
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 10px;
    background-color: var(--warning-color);
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item.active.carousel-item-end {
    opacity: 0;
}

/* OLD HERO SECTION (BACKUP) */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 20%;
    left: -50px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    left: 30%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    min-height: 40vh;
    background: var(--gradient-primary);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* ==========================================
   FEATURE CARDS
   ========================================== */
.feature-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* ==========================================
   LOAN CARDS
   ========================================== */
.loan-card {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    background: white;
}

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

.loan-card-header {
    border-radius: 15px 15px 0 0;
}

.loan-card-body {
    background: white;
}

.loan-highlight {
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */
.process-step {
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: var(--box-shadow);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* ==========================================
   STATISTICS COUNTER
   ========================================== */
.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,133.3C960,149,1056,171,1152,170.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* ==========================================
   VALUES & BENEFITS
   ========================================== */
.value-card,
.benefit-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover,
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.value-icon,
.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-card {
    background: white;
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

/* ==========================================
   TEAM CARDS
   ========================================== */
.team-card {
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover .team-image img {
    box-shadow: var(--box-shadow-lg);
    transform: scale(1.1);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-info-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.social-card {
    background: white;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

/* ==========================================
   SERVICES PAGE
   ========================================== */
.details-card {
    background: white;
    border-radius: 15px;
}

.details-card.border-success {
    border-left: 5px solid var(--success-color);
}

.detail-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirements-card {
    border-radius: 15px;
}

.requirement-item {
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.calculator-card {
    border-radius: 15px;
}

.result-box {
    transition: var(--transition);
}

.result-box:hover {
    transform: scale(1.02);
}

/* ==========================================
   APPLICATION FORM
   ========================================== */
.application-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 0 0 auto;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active,
.step.completed {
    opacity: 1;
}

.step .step-number {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step-line {
    height: 2px;
    background: #e9ecef;
    flex: 1;
    margin: 0 10px;
}

.step.completed + .step-line {
    background: var(--success-color);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

.application-form-card {
    border-radius: 15px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loan-type-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    padding: 0;
}

.loan-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.btn-check:checked + .loan-type-card {
    border-color: var(--primary-color);
    background: rgba(13, 110, 253, 0.05);
    box-shadow: var(--box-shadow-lg);
}

.affordability-card {
    border-left: 4px solid var(--primary-color);
}

.review-summary {
    border-left: 4px solid var(--success-color);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    transition: var(--transition);
    font-weight: 500;
    border-radius: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-lg {
    padding: 12px 30px;
}

/* ==========================================
   FORMS
   ========================================== */
.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: var(--transition);
    padding: 10px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
footer a {
    transition: var(--transition);
}

footer a:hover {
    color: white !important;
    transform: translateX(5px);
}

.social-links a {
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ==========================================
   ACCORDION (FAQ)
   ========================================== */
.accordion-button {
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-item {
    border-radius: 10px !important;
}

/* ==========================================
   UTILITIES
   ========================================== */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .carousel-item {
        height: auto;
        min-height: 100vh;
    }

    .slide-content h1.display-2 {
        font-size: 2.5rem;
    }

    .slide-content h1.display-1 {
        font-size: 3rem;
    }

    .slide-content .lead {
        font-size: 1.1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .carousel-indicators button.active {
        width: 25px;
    }

    .slide-features {
        padding: 1rem;
    }

    .stat-box {
        margin-bottom: 1rem;
    }

    /* Old Styles */
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .page-header {
        min-height: 30vh;
        padding-top: 100px;
    }

    .application-steps {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-line {
        min-width: 30px;
    }
}

@media (max-width: 576px) {
    /* Mobile Slider Typography */
    .slide-content h1.display-2 {
        font-size: 1.8rem !important;
    }

    .slide-content h1.display-1 {
        font-size: 2.2rem !important;
    }

    .slide-content .lead {
        font-size: 1rem !important;
    }

    .slide-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .btn-lg {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .slide-features .col-6 {
        font-size: 0.85rem;
    }

    .slide-features i {
        font-size: 1.5rem !important;
    }

    .stat-box i {
        font-size: 2rem !important;
    }

    .stat-box h3 {
        font-size: 1.5rem !important;
    }

    /* Old Typography */
    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* ==========================================
   LOADING ANIMATION
   ========================================== */
.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* ==========================================
   PULSE ANIMATION
   ========================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--box-shadow-lg);
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================
   PRELOADER (Optional)
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================
   CUSTOM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* ==========================================
   LOAN PROCESS MAP
   ========================================== */
.loan-process-map {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.process-map-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--success-color);
    position: relative;
}

.process-map-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 143, 58, 0.15);
    border-left-width: 8px;
}

.process-map-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 10px rgba(90, 143, 58, 0.3);
    border: 4px solid white;
}

.process-map-content h4 {
    color: var(--dark-color);
    margin-top: 10px;
}

.process-map-content ul li {
    padding: 5px 0;
    line-height: 1.6;
}

.process-timeline {
    border-left: 4px solid var(--success-color);
    background: white;
}

.timeline-box {
    padding: 1rem;
    background: rgba(90, 143, 58, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.timeline-box:hover {
    background: rgba(90, 143, 58, 0.1);
    transform: scale(1.05);
}


/* ==========================================
   NAVBAR WITH LOGO
   ========================================== */
.navbar-light {
    background: white !important;
    border-bottom: 2px solid #f8f9fa;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--success-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--success-color);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-light .navbar-toggler {
    border-color: var(--success-color);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(90, 143, 58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Logo */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f8f9fa;
    }
}
