/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;500&display=swap');

/* --- CSS Variables based on your Logo & Brand --- */
:root {
    --primary-color: #1A3A5A; /* Deep Blue from logo */
    --secondary-color: #E8A825; /* Gold/Yellow from logo */
    --dark-color: #212529; /* Black/Dark Grey from logo */
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    
    /* Typography matching the logo's feel */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Roboto', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- General Body & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white-color);
}

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.8rem; color: var(--primary-color); text-align: center; margin-bottom: 50px; }
.btn { display: inline-block; padding: 15px 30px; border-radius: var(--border-radius); text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary { background-color: var(--secondary-color); color: var(--dark-color); font-weight: bold; }
.btn-primary:hover { background-color: #d49720; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(232, 168, 37, 0.4); }

/* --- Header & Navigation Bar --- */
.main-header { background-color: var(--white-color); box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; height: var(--header-height); }
.nav-logo img { height: 50px; width: auto; }
.nav-menu { display: flex; list-style: none; align-items: center; }
.nav-item { margin-left: 25px; position: relative; }
.nav-link { text-decoration: none; color: var(--dark-color); font-weight: 500; padding: 10px 0; transition: color 0.3s ease; }
.nav-link:hover, .nav-dropdown > .nav-link:hover { color: var(--secondary-color); }
.nav-link-cta { display: inline-block; padding: 10px 20px; background-color: var(--primary-color); color: var(--white-color); border-radius: var(--border-radius); text-decoration: none; transition: all 0.3s ease; }
.nav-link-cta:hover { background-color: var(--dark-color); transform: translateY(-2px); }

/* Dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--white-color); box-shadow: var(--shadow); list-style: none; border-radius: var(--border-radius); padding: 10px 0; min-width: 220px; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 12px 20px; }
.dropdown-menu li a { text-decoration: none; color: var(--dark-color); display: block; }

/* Hamburger Menu */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--dark-color); }

/* --- Page Sections --- */
.hero { background: linear-gradient(rgba(26, 58, 90, 0.8), rgba(26, 58, 90, 0.8)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop'); background-size: cover; background-position: center; height: calc(100vh - var(--header-height)); display: flex; align-items: center; text-align: left; color: var(--white-color); }
.hero-content { max-width: 650px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.8rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.hero-content .btn { margin-right: 15px; }

.why-us { background-color: var(--light-color); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.why-us-item { text-align: center; }
.why-us-item .icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 15px; }
.why-us-item h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary-color); margin-bottom: 10px; }

.featured-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-category-card { background: var(--white-color); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); transition: transform 0.3s ease; }
.service-category-card:hover { transform: translateY(-10px); }
.service-category-card h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.service-category-card p { margin-bottom: 25px; }

.testimonials { background-color: var(--light-color); }
.testimonial-card { background: var(--white-color); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); text-align: center; }
.testimonial-card p.quote { font-style: italic; margin-bottom: 20px; }
.testimonial-card .author { font-weight: bold; color: var(--primary-color); }

.cta { background: var(--primary-color); color: var(--white-color); text-align: center; }
.cta .section-title { color: var(--white-color); }
.cta p { max-width: 600px; margin: -20px auto 30px; font-size: 1.1rem; }

.page-hero { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white-color); background-size: cover; background-position: center; }
.wfh-hero { background-image: linear-gradient(rgba(26, 58, 90, 0.8), rgba(26, 58, 90, 0.8)), url('https://images.unsplash.com/photo-1554774853-719586f82d77?q=80&w=2070&auto=format&fit=crop'); }
.ta-hero { background-image: linear-gradient(rgba(26, 58, 90, 0.8), rgba(26, 58, 90, 0.8)), url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?q=80&w=2070&auto=format&fit=crop'); }
.page-hero-title { font-family: var(--font-heading); font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px; }
.page-hero-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.95; }

.content-section p { max-width: 800px; margin: 0 auto 40px; text-align: center; font-size: 1.1rem; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.feature-item { text-align: center; }

.step-by-step-guide { background-color: var(--light-color); }
.steps-container { max-width: 800px; margin: 0 auto; position: relative; }
.steps-container::after { content: ''; position: absolute; width: 3px; background-color: var(--secondary-color); top: 20px; bottom: 20px; left: 40px; }
.step { padding: 20px 40px 20px 100px; position: relative; }
.step-number { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background-color: var(--primary-color); color: var(--white-color); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; border: 3px solid var(--white-color); z-index: 1; }
.step-content h3 { font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 5px; }
.csp-id-box { background-color: var(--secondary-color); color: var(--dark-color); padding: 10px 15px; border-radius: var(--border-radius); margin-top: 10px; display: inline-block; font-weight: 500; }

.growth-path { max-width: 800px; margin: 0 auto; }
.growth-path h3 { font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 10px; }
.cta-bottom { text-align: center; margin-top: 50px; }

/* --- Footer --- */
.main-footer { background-color: var(--dark-color); color: var(--light-color); padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-grid h4 { font-family: var(--font-heading); color: var(--secondary-color); margin-bottom: 15px; }
.footer-grid p, .footer-grid li { font-size: 0.95rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: var(--light-color); text-decoration: none; transition: color 0.3s ease; }
.footer-grid a:hover { color: var(--secondary-color); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #4d5154; }

/* --- Admin Login Page --- */
.admin-body { background-color: var(--light-color); display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; }
.login-container { width: 100%; max-width: 450px; background-color: var(--white-color); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.login-header { text-align: center; margin-bottom: 30px; }
.login-logo { max-width: 180px; margin-bottom: 20px; }
.login-header h2 { font-family: var(--font-heading); color: var(--primary-color); font-size: 1.8rem; margin-bottom: 5px; }
.login-form .form-group { margin-bottom: 20px; }
.login-form label { display: block; margin-bottom: 8px; font-weight: 500; }
.login-form input { width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: var(--border-radius); font-size: 1rem; }
.login-form input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(26, 58, 90, 0.2); }
.form-options { text-align: right; margin-bottom: 25px; }
.forgot-password { color: var(--primary-color); text-decoration: none; font-size: 0.9rem; }
.login-btn { width: 100%; padding: 15px; font-size: 1.1rem; }

/* --- Responsive Design --- */
@media(max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .featured-services-grid { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .nav-menu { position: fixed; left: -100%; top: var(--header-height); flex-direction: column; background-color: var(--white-color); width: 100%; height: calc(100vh - var(--header-height)); text-align: center; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding-top: 30px; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 16px 0; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .page-hero-title { font-size: 2.5rem; }
    .steps-container::after { left: 25px; }
    .step { padding: 20px 20px 20px 70px; }
    .step-number { left: 0; width: 45px; height: 45px; font-size: 1.2rem; }
}

/* --- Legal Content Formatting --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.policy-logo {
    max-width: 180px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-content h3:first-of-type {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-position: inside;
    padding-left: 10px;
}

/* --- Interactive Policy Styles --- */
.policy-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

.policy-section {
    cursor: pointer;
}

.policy-section summary {
    list-style: none; /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.policy-section summary::-webkit-details-marker {
    display: none; /* Hide Safari/Chrome arrow */
}

/* Custom Arrow Icon */
.policy-section summary::after {
    content: '\f078'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.policy-section[open] > summary::after {
    transform: rotate(180deg);
}

.policy-content {
    padding-top: 15px;
}

/* --- About Us Page Specific Styles --- */
.about-hero {
    background-image: linear-gradient(rgba(26, 58, 90, 0.8), rgba(26, 58, 90, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-us-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-item, .vision-item {
    text-align: center;
    padding: 30px;
}

.mission-item .icon, .vision-item .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}


/* --- Services Page Specific Styles --- */
.services-hero {
    background-image: linear-gradient(rgba(26, 58, 90, 0.8), rgba(26, 58, 90, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2070&auto=format&fit=crop');
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 30px 0 10px;
}

.service-content {
    padding: 0 30px;
    flex-grow: 1;
}

.service-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-details {
    list-style: none;
    padding: 15px 0;
    margin: 20px 30px;
    border-top: 1px solid var(--light-color);
}

.service-details li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-footer {
    background-color: var(--light-color);
    padding: 20px 30px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}


/* --- Additional Responsive Adjustments --- */
@media (max-width: 992px) {
    .about-us-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-us-content .section-title {
        text-align: center;
    }
}

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

/* --- Header & Navigation Bar --- */

/* Style the logo link as a flex container */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Creates space between the logo and the text */
    text-decoration: none;
    color: var(--dark-color);
}

/* Style the new text span */
.nav-logo span {
    font-family: var(--font-heading); /* Uses the professional serif font */
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Matches the style of "SOLUTIONS" in your logo */
    line-height: 1; /* Ensures it's vertically compact */
}

/* Optional: On very small mobile screens, hide the text to save space */
@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
}

/* --- Booking Page Layout --- */
.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.booking-form-container {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.order-summary-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 120px; /* Header height + some margin */
}

.order-summary-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.order-summary-card .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

.order-summary-card .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
}

#totalPrice {
    color: var(--primary-color);
}


/* --- Multi-Step Form Styles --- */
.multi-step-form {
    width: 100%;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: var(--progress-width, 0%); /* UPDATE THIS LINE */
    background-color: var(--secondary-color);
    z-index: 2;
    transition: width 0.3s ease;
}

.progress-step {
    position: relative;
    z-index: 3;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #999;
    transition: 0.3s;
}

.progress-step.active {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.form-step-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-step-intro {
    margin-bottom: 25px;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 90, 0.15);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #777;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.terms-agreement {
    font-size: 0.9rem;
    color: #555;
    margin-top: 25px;
}


/* --- Responsive adjustments for Booking Page --- */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .order-summary-card {
        position: static; /* Unstick the summary card */
        margin-top: 30px;
    }
}

/* --- Admin Dashboard Layout --- */
.dashboard-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--dark-color);
    color: var(--white-color);
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-logo img {
    height: 40px;
}

.dashboard-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-user .btn-secondary {
    color: var(--white-color);
    border-color: var(--secondary-color);
    padding: 8px 16px;
}
.dashboard-user .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}


.dashboard-main {
    padding: 30px 40px;
}

.dashboard-main h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Flash Messages */
.flash-error, .flash-success {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
}
.flash-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.flash-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}


/* --- Dashboard Table Styles --- */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--light-color);
}

table td small {
    color: #6c757d;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.btn-action {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn-action:hover {
    background-color: var(--dark-color);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--white-color);
}
.status-paid { background-color: #28a745; }
.status-pending-payment { background-color: #ffc107; color: var(--dark-color); }
.status-quote-request { background-color: #17a2b8; }
.status-canceled { background-color: #dc3545; }


/* --- Pagination Styles --- */
.pagination {
    margin-top: 30px;
    text-align: right;
}
.page-link {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin: 0 5px;
    transition: background-color 0.3s;
}
.page-link:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}
.page-info {
    margin: 0 15px;
    font-weight: 500;
    color: #6c757d;
}

/* --- View Booking Page Styles --- */
.view-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.view-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.detail-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef0f2;
}

.detail-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
    font-size: 0.95rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span {
    color: #6c757d;
}

.detail-item strong {
    text-align: right;
}

