@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

/* Base Variables */
:root {
    --primary-color: #1e40af;
    --primary-hover: #1d4ed8;
    --brand-gradient: linear-gradient(135deg, #1e40af 0%, #1a3bbf 50%, #1e3a8a 100%);
    --logo-cyan: #00D1E0;
    --logo-orange: #FF7C30;
    --bg-color: #f9fafb;
    --text-color: #0f172a;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --footer-bg: #131720;
    --footer-text: #9ca3af;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

/* PKILL Brand Logo - New Design */
.pkill-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

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

.pkill-logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkill-logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-location {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-location i {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--text-color);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero .subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-location {
    font-size: 0.9rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-location .change-link {
    text-decoration: underline;
    margin-left: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 9999px;
    padding: 6px 24px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
}

.search-icon {
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: inherit;
}

/* Popular Services */
.popular-services h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.icon-wrapper {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Banner */
.banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eff6ff;
    padding: 24px 32px;
    border-radius: 16px;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.banner-card:hover {
    background-color: #e0f2fe;
    transform: translateY(-2px);
    border-color: #bfdbfe;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    background-color: #dbeafe;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.banner-text h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    /* darker blue */
    font-weight: 600;
}

.banner-text p {
    font-size: 0.95rem;
    color: #3b82f6;
    margin-top: 2px;
}

.banner-arrow {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* How it works */
.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.step-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.review-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

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

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-container {
    width: 50%;
    height: 6px;
    background: #e5e7eb;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    width: 33%;
    height: 100%;
    background: #9ca3af;
    border-radius: 3px;
}

/* CTA */
.cta-box {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 48px;
    border-radius: 24px;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 32px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.05rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--footer-text);
    font-size: 0.95rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--footer-text);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    color: var(--footer-text);
    font-size: 0.9rem;
}

/* List Page Styles */
.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filters-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text-color);
}

.filter-btn:hover {
    background: var(--bg-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.results-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.workers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.worker-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.worker-card:hover {
    box-shadow: var(--card-shadow);
    border-color: #d1d5db;
}

.worker-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.worker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    background-color: #eff6ff;
    flex-shrink: 0;
}

.worker-info {
    flex-grow: 1;
}

.worker-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.worker-name-row h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.badge {
    font-size: 0.70rem;
    padding: 3px 10px;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background-color: #22c55e;
    color: #fff;
}

.badge-prime {
    background-color: #3b82f6;
    color: #fff;
}

.badge-trusted {
    background-color: #e0f2fe;
    color: #0369a1;
}

.worker-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.worker-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.worker-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.worker-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.worker-price strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.worker-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-available {
    font-size: 0.85rem;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-busy {
    font-size: 0.85rem;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.status-available i,
.status-busy i {
    font-size: 0.5rem;
}

.btn-request {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-request:hover {
    background-color: var(--primary-hover);
}

.btn-request:disabled,
.btn-request.disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
}

/* Tools Page Styles */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.tool-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tool-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.tool-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
}

.tool-status {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.btn-book {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: auto;
    font-family: inherit;
}

.btn-book:hover {
    background-color: var(--primary-hover);
}

.btn-book.disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
}

/* Informational Pages */
.info-page-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.info-page-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-page-content p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page */
.contact-header-bg {
    background-color: #2e5695;
    padding: 80px 0 140px 0;
    color: #fff;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1f2937;
    background-color: #fcfcfc;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: #f97316;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
    font-family: inherit;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #ea580c;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.info-text p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.contact-map {
    margin-top: 10px;
}

/* About Us Page */
.about-hero-bg {
    background-color: #f0f6ff;
    padding: 60px 0;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
    height: 100%;
}

.about-story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.about-story-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
}

.about-choose-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-feature-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.about-feature-icon {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 24px;
}

.about-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.about-feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #111827;
}

.modal-body {
    padding: 24px;
}

.selected-worker-info {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.selected-worker-info .worker-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.selected-worker-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.selected-worker-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 8px;
    outline: none;
    font-family: inherit;
}

.modal-input:focus {
    border-color: var(--primary-color);
}

.time-toggle-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.time-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.time-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.modal-footer {
    padding: 16px 24px 24px;
}

.btn-confirm-request {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.btn-confirm-request:hover {
    background-color: var(--primary-hover);
}

/* Policy Pages */
.policy-header-bg {
    background-color: #f0f6ff;
    padding: 80px 0 120px 0;
}

.policy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
}

.policy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 16px;
}

.policy-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.policy-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    margin-top: 32px;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-content ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 16px;
}

.policy-content ul li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.back-btn:hover {
    color: #1e40af;
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateX(-5px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
}

.back-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

/* Back Button - Tablet */
@media (max-width: 768px) {
    .back-btn {
        font-size: 14px;
        padding: 8px 16px;
        gap: 6px;
        margin-bottom: 16px;
    }
}

/* Back Button - Mobile */
@media (max-width: 480px) {
    .back-btn {
        font-size: 13px;
        padding: 8px 14px;
        gap: 6px;
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .back-btn i {
        font-size: 11px;
    }
}

/* Login Page */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    background-color: #fff;
}

.login-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 40px 20px;
}

.login-icon {
    width: 64px;
    height: 64px;
    background-color: #eff6ff;
    color: #3b82f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px;
}

.login-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.login-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login-input:focus {
    border-color: #3b82f6;
}

.btn-login {
    width: 100%;
    background-color: #3b82f6;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    background-color: #2563eb;
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .banner-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .banner-left {
        flex-direction: column;
    }

    .banner-arrow {
        transform: rotate(90deg);
    }

    .worker-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .worker-action {
        width: 100%;
        justify-content: space-between;
    }
}

/* Service Types */
.service-types h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .service-types-grid {
        grid-template-columns: 1fr;
    }
}

.service-type-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.service-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--card-hover-shadow);
}

.st-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.st-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.st-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
}

.service-type-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.st-desc {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.st-details {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.st-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.st-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-top: auto;
}

.st-btn.btn-blue {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.st-btn.btn-blue:hover {
    background-color: var(--primary-hover);
}

.st-btn.btn-outline {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.st-btn.btn-outline:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* Quick Fix Form Page */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text-color);
}

.booking-form {
    background: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    appearance: none;
}

select.form-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-input:focus {
    border-color: var(--primary-color);
}

.btn-detect {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    color: var(--text-color);
}

.btn-detect:hover {
    border-color: #cbd5e1;
    background: var(--bg-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background-color: #93c5fd;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #60a5fa;
}

/* Careers Page CSS */
.careers-header-bg {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 80px 0;
    color: #fff;
    margin-bottom: 40px;
}

.careers-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.careers-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.careers-content-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.careers-content-container p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.careers-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.careers-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f5f9;
}

.careers-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-color: #e2e8f0;
}

.careers-list i {
    font-size: 1.8rem;
    color: #f97316;
    margin-top: 5px;
}

.careers-list h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.careers-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-box .btn-primary {
    background-color: #f97316;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-box .btn-primary:hover {
    background-color: #ea580c;
}

.careers-image-container .careers-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (max-width: 768px) {

    .careers-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* =========================================
   CUSTOMER DASHBOARD STYLES
   ========================================= */

/* Dashboard Hero */
.dash-hero {
    background: linear-gradient(135deg, #1a3bbf 0%, #2b6bf3 50%, #4f8cf7 100%);
    padding: 48px 0;
    color: #fff;
}

.dash-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dash-hero-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dash-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.dash-welcome h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #1a3bbf;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.dash-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Stats Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.dash-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dash-stat-info {
    display: flex;
    flex-direction: column;
}

.dash-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.dash-stat-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* Section Title */
.dash-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-section-header .dash-section-title {
    margin-bottom: 0;
}

.dash-active-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
}

.dash-view-all {
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.dash-view-all:hover {
    color: #1d4ed8;
}

/* Quick Actions */
.dash-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dash-action-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.dash-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Booking Cards */
.dash-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-booking-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-booking-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.dash-booking-status-bar {
    height: 4px;
    width: 100%;
}

.dash-booking-status-bar.status-in-progress {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.dash-booking-status-bar.status-scheduled {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.dash-booking-body {
    padding: 24px;
}

.dash-booking-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-booking-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dash-booking-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dash-booking-left h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.dash-booking-type {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.dash-booking-status-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.tag-progress {
    background: #eff6ff;
    color: #2563eb;
}

.tag-scheduled {
    background: #fef3c7;
    color: #92400e;
}

.dash-booking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 16px;
}

.dash-booking-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
}

.dash-booking-detail i {
    color: #94a3b8;
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.dash-booking-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dash-btn-outline-sm {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.dash-btn-outline-sm:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.dash-btn-outline-sm.danger {
    color: #dc2626;
    border-color: #fecaca;
}

.dash-btn-outline-sm.danger:hover {
    background: #fef2f2;
    border-color: #f87171;
}

.dash-btn-outline-sm.btn-rate-now {
    color: #f59e0b;
    border-color: #fde68a;
}

.dash-btn-outline-sm.btn-rate-now:hover {
    background: #fffbeb;
    border-color: #fbbf24;
}

/* History Table */
.dash-history-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dash-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.dash-history-table thead {
    background: #f8fafc;
}

.dash-history-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: #475569;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.dash-history-table td {
    padding: 16px 20px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}

.dash-history-table tbody tr {
    transition: background 0.15s;
}

.dash-history-table tbody tr:hover {
    background: #f8fafc;
}

.dash-history-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-table-service {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dash-table-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-completed {
    background: #ecfdf5;
    color: #059669;
}

.badge-cancelled {
    background: #fef2f2;
    color: #dc2626;
}

.dash-table-rating {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.dash-no-rating {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dash-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dash-welcome h1 {
        font-size: 1.3rem;
    }

    .dash-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dash-stat-card {
        padding: 18px;
    }

    .dash-stat-number {
        font-size: 1.2rem;
    }

    .dash-booking-details {
        grid-template-columns: 1fr;
    }

    .dash-booking-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dash-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dash-stats-grid {
        grid-template-columns: 1fr;
    }

    .dash-quick-actions {
        grid-template-columns: 1fr 1fr;
    }

    .dash-hero-left {
        flex-direction: column;
        align-items: flex-start;
    }
}