

.list-group-item {
    border-left: 3px solid var(--secondary-color);
}

/* General Styles */
body {
    background: linear-gradient(135deg, #f8f9fa, #e0f7fa);
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Title Bar */
.title-bar {
    background-color: #a7c957; /* Sage Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title-bar img {
    height: 100px;
    margin-right: 10px;
    width: auto;
}

.title-bar h1 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    color: white;
}


/* Navigation Bar Styles */
.nav-orange {
    background-color: #d95d16; /* Dark Orange for the navigation bar */
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    color: #fff !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffe6cc !important;
    text-decoration: underline;
}


/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: #f28c28; /* Orange */
    color: white;
    border-radius: 12px 12px 0 0;
}

/* Buttons */
.btn-secondary {
    background-color: #f28c28; /* Orange */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #c76d1b; /* Darker Orange */
}

/* Forms */
.form-section {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #a7c957; /* Sage Green */
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: white;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #f28c28; /* Orange */
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
}

.form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
    opacity: 0.8;
}

textarea.form-control {
    resize: vertical;
}

/* Alerts */
.alert {
    border-radius: 8px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    border-top: 2px solid #a7c957; /* Sage Green */
}

footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #f28c28; /* Orange */
}


.chat-log {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.message {
    padding: 8px;
    border-radius: 10px;
    max-width: 80%;
}
.message.guest {
     background: #d6d9db;
     align-self: flex-start;
}
.message.staff {
    background: #d6b034;
    color: white;
    align-self: flex-end;
}

/* static/css/custom.css */

/* Policy Card Effects */
.policy-card {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.policy-card .accordion-button {
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.policy-card .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #f28c28; /* Bootstrap primary color */
}

.policy-card .accordion-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
}

/* Service Card Effects */
.service-card {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card .accordion-button {
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.service-card .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #f28c28;
}

.service-card .accordion-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
}

/* 24/7 Service Quick View Card Effects */
.service-quick-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-quick-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Smooth collapse transition */
.accordion-collapse {
    transition: height 0.3s ease;
}