/* Color Palette Configurations */
:root {
    --primary-color: #3b71ca;
    --star-color: #ffc107;
    --card-bg: #ffffff;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

/* Essential Header Badge */
.badge-custom {
    position: absolute; top: -6px; right: -9px;
    background-color: #4f86c6; color: white;
    font-size: 0.65rem; padding: 2px 6px; border-radius: 50%;
}

/* Hero Slider Settings */
.slider-wrapper { overflow: hidden; cursor: grab; user-select: none; }
.slider-wrapper:active { cursor: grabbing; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }

.slide-item {
    min-width: 100%;
    flex-shrink: 0;
    min-height: 550px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.custom-nav-link { transition: color 0.2s ease-in-out; }
.custom-nav-link:hover { color: #689dec !important; }

/* form section */
/* Wrapper Box Styling */
.ln-wrapper-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

/* Section Title */
.ln-main-title {
    color: #1f2937;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

/* Input & Textarea Fields */
.ln-input-field {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.ln-input-field:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px #a5b4fc;
    outline: none;
}

/* Submit Button with Hover State */
.ln-submit-action {
    background-color: #4f46e5;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease;
}

.ln-submit-action:hover {
    background-color: #4338ca;
    color: #ffffff;
}

.ln-submit-action:active {
    transform: scale(0.98);
}

/* Map Frame Container & Responsive Iframe */
.ln-map-frame {
    width: 100%;
    height: 100%;
    min-height: 350px; /* Base height for mobile and tablet views */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.ln-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* form section */
/* footer */

/* Footer Section Custom Overrides */
.custom-footer-bg { background-color: #b3d1ff; }
.footer-link { color: #2b303a; text-decoration: none; transition: color 0.2s ease-in-out; }
.footer-link:hover { color: #000000; text-decoration: underline; }
.custom-subscribe-btn { background-color: #212529; color: #ffffff; border: none; }
.custom-subscribe-btn:hover { background-color: #3b4248; color: #ffffff; }