/* Custom Overrides for Reobiz Template - Light Theme Integration */

:root {
    --bg-primary: #0B0F19;
    --bg-secondary: #161B26;
    --bg-tertiary: #1E2533;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-muted: #9CA3AF;
    --font-mono: 'Roboto Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

/* Modern Text Logo Style */
.logo-modern {
    font-family: 'Inter', 'Outfit', sans-serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.logo-modern .logo-accent {
    color: #ec4c6f !important;
    text-shadow: 0 0 12px rgba(236, 76, 111, 0.6) !important;
    margin: 0 2px !important;
}

.logo-modern:hover {
    transform: translateY(-1px) scale(1.02) !important;
}

.menu-sticky.sticky .logo-modern {
    color: #111111 !important;
}

.menu-sticky.sticky .logo-modern .logo-accent {
    color: #ec4c6f !important;
    text-shadow: none !important;
}

/* Custom Language Selector styling to match navbar */
.lang-selector-custom {
    background: #161B26 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    margin-left: 15px !important;
}

.menu-sticky.sticky .lang-selector-custom {
    color: #111111 !important;
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

.lang-selector-custom option {
    background: #ffffff !important;
    color: #111111 !important;
}

/* Header Booking Button styles */
.header-book-btn {
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
}

/* Featured Service adjustments for spacing */
.featured-wrap {
    min-height: 250px;
}

/* ---------------------------------------------------- */
/* Admin Panel Styling (Clean Dark) */
/* ---------------------------------------------------- */

.admin-dashboard-wrap,
.admin-login-wrap {
    background: #161B26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #E5E7EB;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    color: #9CA3AF;
    text-align: left;
}

.form-control {
    background: #0B0F19 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    width: 100%;
}

.form-control:focus {
    outline: none !important;
    border-color: #e2242b !important;
    box-shadow: 0 0 0 3px rgba(226, 36, 43, 0.25) !important;
}

/* Admin Dashboard Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #161B26;
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #E5E7EB;
}

.admin-table th {
    background: #1E2533;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 14px;
}

.admin-table td {
    font-size: 14px;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.badge-paid {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

/* Metrics Cards */
.metric-card-custom {
    background: #161B26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 10px;
    text-align: left;
}

/* ---------------------------------------------------- */
/* Printable Invoice layouts                            */
/* ---------------------------------------------------- */

.invoice-body {
    background-color: #F9FAFB !important;
    color: #1F2937 !important;
}

.invoice-wrap {
    max-width: 800px;
    margin: 40px auto;
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: #1F2937 !important;
}

.invoice-wrap h1,
.invoice-wrap h2,
.invoice-wrap h3,
.invoice-wrap h4,
.invoice-wrap td,
.invoice-wrap th,
.invoice-wrap p,
.invoice-wrap span {
    color: #1F2937 !important;
}

@media print {

    body,
    .invoice-body {
        background: #FFFFFF !important;
        color: #000000 !important;
    }

    .invoice-wrap {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .no-print {
        display: none !important;
    }
}

/* Custom Pricing Buttons Styling (Filled with High Contrast) */
.rs-pricing.style4 .pricing-wrap .bottom-part .btn-part a {
    background-color: #ec4c6f !important;
    color: #ffffff !important;
    border: 1px solid #ec4c6f !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 12px 35px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(236, 76, 111, 0.25) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.rs-pricing.style4 .pricing-wrap .bottom-part .btn-part a:hover {
    background-color: #c92137 !important;
    border-color: #c92137 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(201, 33, 55, 0.4) !important;
    transform: translateY(-2px) !important;
}

.rs-pricing.style4 .pricing-wrap.center .bottom-part .btn-part a {
    background-color: #ffffff !important;
    color: #ec4c6f !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.rs-pricing.style4 .pricing-wrap.center .bottom-part .btn-part a:hover {
    background-color: #f3f4f6 !important;
    border-color: #f3f4f6 !important;
    color: #c92137 !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Pricing cards top badge */
.save-badge-pricing {
    background: #10B981;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 0;
    border-radius: 32px;
    letter-spacing: 1px;
    text-align: center;
}

.pricing-wrap.center .save-badge-pricing {
    background: #FFF;
    color: #10B981;
}

/* Contact form subtitle override */
.contact-section-subtitle {
    color: #3B82F6 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}