:root {
    --primary-green: #10b981;
    --dark-blue: #1e293b;
    --border-color: #e2e8f0;
    --bg-light-gray: #f8fafc;
}

/* Global Styles */
body {
    background-color: var(--bg-light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-blue);
}
.text-dark, .fw-bold { color: var(--dark-blue) !important; }

/* ================= SERVICE LISTING PAGE CSS ================= */
.search-container { 
    max-width: 600px; 
    margin: 0 auto 40px auto; 
}

.search-input { 
    border-radius: 8px !important; 
    padding: 12px 20px; 
    border: 1px solid var(--border-color); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
    color: var(--dark-blue); 
}

.search-input:focus { 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15); 
    border-color: var(--primary-green); 
    outline: none; 
}

/* Service Card CSS */
.service-card { 
    transition: all 0.3s ease; 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    overflow: hidden; 
    background-color: #ffffff; 
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 350px; /* Thoda wide kiya hai better mobile view ke liye */
    margin: 0 auto; 
}

.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important; 
    border-color: var(--primary-green); 
}

.card-img-top { 
    width: 100%;
    height: 180px; /* Slightly taller for better visuals */
    object-fit: cover; 
    object-position: center; 
    border-bottom: 1px solid #f1f5f9;
    background-color: #e2e8f0; 
}

.service-card-body {
    padding: 1.2rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Buttons */
.btn-custom { 
    background-color: var(--primary-green); 
    color: white; 
    border: 1px solid var(--primary-green); 
    border-radius: 6px; 
    padding: 8px 10px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    transition: 0.2s; 
}

.btn-custom:hover { 
    background-color: var(--dark-blue); 
    border-color: var(--dark-blue); 
    color: white; 
}

.btn-outline-custom { 
    border: 1px solid var(--primary-green); 
    color: var(--primary-green); 
    background-color: transparent; 
    border-radius: 6px; 
    padding: 8px 10px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    transition: 0.2s; 
}

.btn-outline-custom:hover { 
    background-color: var(--primary-green); 
    color: white; 
}

/* ================= DETAILS PAGE CSS ================= */
.hero-img {
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.btn-book {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.feature-list li {
    margin-bottom: 10px;
    color: #4b5563;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 8px;
}