/* ===========================
   Global Styles
=========================== */
body {
      background-color: #ffffff;
      font-size: 14px;
      color: #fff;
      margin: 0;
      padding: 0;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.5px;
      -webkit-font-smoothing: antialiased;
}

/* Main Wrapper */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Force logo always visible */
.slim-header .logo-group #logo,
.slim-header .logo-group #words {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 67px;
    transition: none !important;
}

/* ===========================
   Section Titles
=========================== */
.section-title {
    text-align: center;
    margin: 40px 0 60px 0;
}

.section-title h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d0d0d;
    position: relative;
    display: inline-block;
}

.section-title h1:after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #84a4fc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* ===========================
   Services Section Layout
=========================== */
.services-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    flex: 1;
}

.service-sidebar {
    flex: 0 0 28%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-width: 250px;
}

.main-content {
    flex: 1;
    min-width: 60%;
    padding-left: 20px;
}

.hero-image {
    margin-bottom: 25px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.request-quote-button {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.requestButton {
    background-color: #333;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.requestButton:hover {
    background-color: #728EDB;
    color: #fff;
}

/* ===========================
   Typography
=========================== */
main h1, main h2, main h4 {
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #222;
}

main p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===========================
   Widgets / Sidebar
=========================== */
.widget-brochure {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-brochure li {
    margin-bottom: 12px;
}

.widget-brochure li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    word-break: break-word;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.widget-brochure li a i {
    font-size: 1.2rem;
    min-width: 20px;
}

.widget-brochure li a:hover {
    background: #728EDB;
    color: #fff;
    border-color: #728EDB;
}

.sidebar-block h5.widget-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.category li {
    list-style: none;
    margin-bottom: 12px;
}

.category li a {
    display: block;
    padding: 12px 15px;
    margin-left: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.category li a:hover,
.category li.active a {
    border-color: #728EDB;
    background-color: #728EDB;
    color: #fff;
}

.toggle-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-btn:hover {
    background-color: #f1f1f1;
}

.services-list,
.brochure-list {
    display: none;
    margin-top: 8px;
    padding-left: 0;
}

.services-list.show,
.brochure-list.show {
    display: block;
    animation: dropdownFade 0.3s ease;
}

.services-list li a,
.brochure-list li a {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.services-list li a:hover,
.brochure-list li a:hover {
    border-color: #728EDB;
    background-color: #728EDB;
    color: #fff;
}

/* Animations */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Mobile & Responsive
=========================== */
/* Default: hide mobile, show desktop */
.d-mobile {
    display: none;
}
.d-desktop {
    display: block;
}

/* Mobile view: show mobile, hide desktop */
@media (max-width: 991px) {
    .d-desktop {
        display: none;
    }
    .d-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.content-wrapper {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px 18px;
        margin-top: 20px;
    }
}
