@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');





.bg-success-light {
    background-color: var(--brand-green-light) !important;
}





body {
    font-family: 'Inter', sans-serif;
    padding-top: 85px; 
    display: flex;
    flex-direction: column;
    height: 100%;
}

:root {
    --success-glow: rgba(46, 204, 113, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --brand-green: #2ECC71;
    --brand-green-light: rgba(46, 204, 113, 0.1); 
    --brand-blue: #3498DB;
    --brand-blue-light: rgba(52, 152, 219, 0.1); 
    --brand-yellow: #F1C40F;
}



.hero-section {
    background: radial-gradient(circle at 10% 20%, rgba(243, 255, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding-bottom: 5rem;
}

.badge-custom {
    background: #fff;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f39c12;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    animation: floatY 4s ease-in-out infinite;
    z-index: 10;
}

.price-circle {
    background: #f39c12;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.image-container {
    max-width: 450px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 8px solid white;
}

.stats-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.stats-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delayed {
    animation: slideUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1.2s 0.4s ease forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.navbar {
    transition: all 0.3s ease;
    min-height: 80px;
}

.nav-link {
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2ecc71 !important;
}

.btn-success {
    background-color: #2ecc71;
    transition: transform 0.2s ease;
    background-color: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
}

.btn-success:hover {
    transform: scale(1.03);
    background-color: #27ae60 !important;


    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    animation-duration: 0.3s;
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-primary);
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
}


footer {
    background-color: #1a1a1a !important; 
    flex-shrink: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #2ecc71 !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.whatsapp-card {
    background-color: #2c2c2c;
    border: 1px solid #3d3d3d;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.smaller {
    line-height: 1.4;
}

.contact-info-card {
    transition: transform 0.2s ease-in-out;
}

.contact-info-card:hover {
    transform: translateX(5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.form-control:focus, .form-select:focus {
    background-color: #fff !important;
    border: 1px solid #2ecc71 !important;
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.1);
}

.form-control-lg, .form-select-lg {
    border-radius: 12px;
}

.accordion-button {
    background-color: white !important;
    color: #2c3e50 !important;
    padding: 1.25rem;
    box-shadow: none !important; 
}

.accordion-button:not(.collapsed) {
    color: #2ecc71 !important; 
    border-bottom: 1px solid #eee;
}

.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.2s ease;
}

.accordion-item {
    border: 1px solid #eef0f2 !important;
}

.btn-outline-primary {
    color: #3498db;
    border-color: #3498db;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
}

.align-items-stretch .card,
.align-items-stretch .d-grid {
    height: 100%;
}

.btn-light {
    background-color: #f8f9fa;
    color: #444;
}

.btn-light:hover {
    background-color: #f1f3f5;
    border-color: #ced4da;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.text-primary {
   /* color: #0d6efd !important;*/
    color: var(--brand-blue) !important;
}

#testimonials .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0 !important;
}

#testimonials .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

#testimonials h3 {
    font-size: 2rem;
}

#testimonials .card::before {
    content: "\F6B0";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #f8f9fa;
    z-index: 0;
}

.card.shadow-lg {
    transform: scale(1.05);
    z-index: 2;
    border-top: 5px solid #2ecc71 !important;
    transition: all 0.3s ease;
}

.timeline {
    position: relative;
    padding-left: 10px;
}

.bg-white.shadow-sm.border.rounded-3 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    transition: all 0.3s ease;
    border-color: #f0f0f0 !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
    border-color: #2ecc71 !important;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

#about .border-start {
    border-color: #e9ecef !important;
}

#about h6 {
    position: relative;
}

#about .position-relative::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
}
#btn-map {
    width: 50%;
}

.map-btn {
    width: 50%;
}
.col-lg-4 {
    transition: all 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

    .hover-lift:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(46, 204, 113, 0.15) !important; 
        border-color: rgba(46, 204, 113, 0.3) !important;
    }

.step-item {
    transition: transform 0.3s ease;
    cursor: default;
}

    .step-item .step-icon {
        transition: all 0.3s ease;
    }

    .step-item:hover {
        transform: translateX(10px); 
    }

    .step-item:hover .step-icon {
        background-color: #2ecc71 !important; 
        color: white !important;
        transform: scale(1.1);
    }

@media (min-width: 992px) {
    .featured-card {
        transform: scale(1.05);
        z-index: 10;
    }
}

@media (max-width: 991px) {
    .col-12 {
        margin-bottom: 1.5rem;
    }

    .featured-card {
        transform: scale(1); 
        border-top-width: 8px !important; 
    }
}

#btn-map .btn {
    backdrop-filter: blur(4px); 
    background-color: rgba(46, 204, 113, 0.9); 
    transition: all 0.3s ease;
}

    #btn-map .btn:hover {
        transform: scale(1.05);
        background-color: #27ae60;
    }

.hover-lift {
    transition: all 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    }

#btn-map .btn {
    transition: transform 0.2s ease;
}

    #btn-map .btn:hover {
        transform: scale(1.05);
    }

.extra-small {
    font-size: 0.75rem !important;
}

.form-control-sm, .form-select-sm {
    min-height: 38px;
    font-size: 0.85rem;
}

.extra-small {
    font-size: 0.75rem !important;
}

.form-compact .form-control-sm,
.form-compact .form-select-sm {
    min-height: 35px;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
}

.icon-box i {
    line-height: 1;
}

@media (min-height: 800px) {
    .section-screen-fit {
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
}

.extra-small {
    font-size: 0.75rem !important;
}

.section-fit-screen {
    min-height: auto;
}

@media (min-width: 992px) {
    .section-fit-screen {
        height: 100vh;
        max-height: 800px; 
        overflow: hidden;
    }

        .section-fit-screen .container {
            max-height: 100%;
        }
}

.form-control-sm, .form-select-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

.form-ultra-compact .form-control-sm,
.form-ultra-compact .form-select-sm,
.form-ultra-compact .input-group-text {
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    min-height: 32px; 
}

.form-ultra-compact placeholder {
    font-weight: normal;
}

#contact .card {
    padding: 1.25rem !important;
}

@media (max-width: 991px) {
    .form-ultra-compact .form-control-sm {
        min-height: 40px; 
    }
}

.extra-small {
    font-size: 0.72rem !important;
}

@media (min-width: 992px) {
    .section-fit-view {
        height: 100vh;
        max-height: 720px; /* Locked height to prevent scrolling */
        overflow: hidden;
    }
}

/* Animation Initial States */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

    /* Triggered State */
    .fade-in-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Optional: Staggered delay for children (e.g., cards) */
.stagger-1 {
    transition-delay: 0.2s;
}

.stagger-2 {
    transition-delay: 0.4s;
}

/* Base state for all cards to ensure smooth transition */
.card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

    /* The Highlight Effect */
    .card:hover {
        transform: translateY(-12px) scale(1.02); /* Lift up and slightly enlarge */
        box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15) !important; /* Soft green-tinted shadow */
        border-color: var(--brand-green) !important;
        z-index: 10; /* Ensure it stays on top of neighbors */
    }

/* Special handling for the "Most Popular" card */
/* We make it slightly more prominent even when not hovered */
.featured-card {
    border-top: 5px solid var(--brand-green) !important;
    transform: scale(1.05);
}

/* When hovering over a neighbor, we slightly dim the featured card 
   to let the hovered one shine */
.row:hover .featured-card:not(:hover) {
    transform: scale(1);
    opacity: 0.9;
}

/* Remove the static border from the Standard Plan */
.featured-card {
    border-top: 1px solid #f0f0f0 !important; /* Reset to match others */
    transform: scale(1.05); /* Keep it slightly larger by default */
}
.card:hover {
    border-top: 5px solid #2ecc71 !important; /* The NJ Seroka brand green */
}
/* Base Card Style */
.card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 5px solid transparent !important; /* Invisible stripe by default */
    position: relative;
}

    /* Hover Stripe & Pop Effect */
    .card:hover {
        transform: translateY(-12px) scale(1.03);
        border-top: 5px solid var(--brand-green) !important; /* Green stripe appears */
        box-shadow: 0 20px 40px rgba(46, 204, 113, 0.12) !important;
        z-index: 10;
    }

        /* Ensure the button within a hovered card is green */
        .card:hover .btn-outline-dark,
        .card:hover .btn-success {
            background-color: var(--brand-green) !important;
            border-color: var(--brand-green) !important;
            color: white !important;
        }

/* Reduce the overall section padding */
#contact {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    min-height: 90vh; /* Ensures it fills most of the screen without overflow */
    display: flex;
    align-items: center;
}

    /* Tighten the header spacing */
    #contact h2 {
        margin-bottom: 10px !important;
    }

    #contact p.lead {
        margin-bottom: 30px !important;
    }

    /* Make form inputs slightly more compact */
    #contact .form-control {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    /* Adjust the height of the right-side contact info cards */
    #contact .contact-info-card {
        padding: 12px 20px !important;
        margin-bottom: 10px !important;
    }

    /* Ensure the WhatsApp button isn't overly tall */
    #contact .whatsapp-btn {
        padding: 15px !important;
    }

@media (min-width: 992px) {
    #contact {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

        /* Reduce the size of the 5 contact cards on the right */
        #contact .contact-info-card {
            padding: 0.75rem 1rem !important; /* Slimmer padding */
            margin-bottom: 0.5rem !important; /* Tighter gaps */
        }

    /* Shrink icons slightly to save space */
    .icon-box {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* Tighten form layout */
    .form-label {
        margin-bottom: 0.2rem;
        font-size: 0.85rem;
    }

    .form-control {
        padding: 0.5rem 0.75rem;
    }
}

/* Ensure the Contact Card doesn't use the Meal Plan hover-swap logic */
#contact .card .btn-get-started {
    display: none !important;
}

#contact .card .btn-send-message {
    display: block !important;
    background-color: var(--brand-green);
    color: white;
}

/* Specific button style for the contact form */
.btn-send-message {
    padding: 0.8rem !important;
    font-size: 1.1rem;
    border-radius: 12px;
}