/* ==========================================================================
   Spokesoftwares Replication - Design System & Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bs-primary: #2273ba;
    --bs-primary-rgb: 34, 115, 186;
    --bs-primary-hover: #1b5c96;
    --bs-secondary: #e59400;
    --bs-secondary-hover: #c47e00;
    --bs-tertiary: #134e8d;
    --bs-quarternary: #f0f5fc;
    --bs-body-bg: #ffffff;
    --bs-body-color: #252525;
    --bs-link-color: #2273ba;
    --bs-navbar-bg: #ffffff;
    --bs-footer-bg: #2273ba;
    --bs-footer-color: #ffffff;
    --bs-gray-light: #f8fbfe;
    --bs-gray-border: #ced4da;
    --bs-green: #239c58;
    --bs-green-hover: #1c7c46;
    --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --breakpoint-xs: 375px;
    --breakpoint-sm: 600px;
    --breakpoint-md: 782px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1170px;
    --breakpoint-xxl: 1530px;
}

/* Reset & Base Elements */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--bs-body-color);
}

h1 { font-size: 2.25rem; font-weight: 900; }
h2 { font-size: 1.85rem; font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 600; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--bs-link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease-in-out;
}
a:hover {
    color: var(--bs-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Grid Layout System */
.container {
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

.col-12 { flex: 0 0 100%; width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff !important;
}
.btn-primary:hover {
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}

.btn-green {
    background-color: var(--bs-green);
    border-color: var(--bs-green);
    color: #ffffff !important;
}
.btn-green:hover {
    background-color: var(--bs-green-hover);
    border-color: var(--bs-green-hover);
}

.btn-tertiary {
    background-color: var(--bs-tertiary);
    border-color: var(--bs-tertiary);
    color: #ffffff !important;
}
.btn-tertiary:hover {
    opacity: 0.9;
}

.btn-icon-svg {
    height: 1.2em;
    width: 1.2em;
    margin-right: 6px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* Header & Navbar */
#wrapper-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bs-navbar-bg);
    box-shadow: 0 6px 45px 2px rgba(14, 49, 91, 0.08);
    height: 70px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease;
}

#main-header {
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1.25rem;
}

.logo-link svg {
    height: 40px;
    width: 220px;
    display: block;
}

.fillLogo { fill: #297eda; }
.fillBody { fill: #252525; }

/* Desktop Navigation Menu */
.navbar-desktop {
    display: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: 0;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--bs-body-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 1.5rem 0.5rem;
    display: block;
    position: relative;
}
.nav-link:hover {
    color: var(--bs-primary);
}

/* Mega dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    z-index: 1010;
    background-color: #f8fbfe;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    width: 90vw;
    max-width: 1140px;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    border-top: 4px solid var(--bs-primary);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.row--mega-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mm-col .widget-title {
    color: var(--bs-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.mm-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mm-col ul li {
    margin-bottom: 0.5rem;
}

.mm-col ul a {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.85;
    display: block;
    padding: 0.2rem 0;
}
.mm-col ul a:hover {
    opacity: 1;
    color: var(--bs-primary);
    padding-left: 4px;
}

.col-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.col-actions .btn {
    width: auto;
    font-size: 0.9rem;
    padding: 10px 18px;
}

.btn-content {
    display: none;
}

/* Mobile Hamburger Menu */
.navbar-toggler {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--bs-body-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer mobile navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: calc(100% - 40px);
    height: 100vh;
    background-color: #f8fbfe;
    z-index: 9999;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    border-left: 4px solid var(--bs-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-bottom: 3rem;
}

#main-nav.show {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.navbar-mobile--close {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-body .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.mobile-nav-body .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu-toggle::after {
    content: "❯";
    font-size: 0.8rem;
    color: #888;
    transition: transform 0.2s ease;
}

.mobile-submenu-toggle.active::after {
    transform: rotate(90deg);
}

.mobile-dropdown {
    background-color: #f0f5fc;
    display: none;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown .mm-col {
    padding: 1rem 0;
}

.mobile-dropdown .widget-title {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.mobile-dropdown ul li a {
    padding: 0.5rem 1rem;
    display: block;
    font-size: 1rem;
    color: #444;
}

/* Body wrapper spacing */
main {
    padding-top: 70px;
}

/* Sections */
section {
    padding: 3rem 0;
    position: relative;
}

.has-background {
    background-size: cover;
    background-position: center;
}

.has-quarternary-background-color {
    background-color: var(--bs-quarternary);
}

.has-off-white-background-color {
    background-color: #fcfcff;
}

/* Highlight text decoration */
.highlight {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.highlight::after {
    content: "";
    position: absolute;
    bottom: 0.15em;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #60d0ff;
    z-index: -1;
    opacity: 0.8;
}
.highlight.teal::after {
    background-color: #a8eed7;
}

/* Banner Component */
.home-banner {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3rem 0;
    min-height: auto;
}

.home-banner--inner-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-banner--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-banner--content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.home-banner--content p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.home-banner--image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner--image img {
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Two-column Image Text splits */
.site-image-text {
    padding: 3rem 0;
}

.site-image-text--inner-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.site-image-text--image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-image-text--image img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.site-image-text--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-image-text--label {
    background: #c0daf7;
    color: #12436e;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 6px 14px;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 1px;
}

.blue-checks {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.blue-checks li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.blue-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bs-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Site Image Columns component */
.site-image-columns {
    padding: 3rem 0;
}

.image-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.site-image-columns--content {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-image-columns--content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.site-image-columns--text-box {
    padding: 1.5rem;
}

.site-image-columns--text-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.site-image-columns--text-box p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1rem;
}

/* Platform Logo Grid Section */
.platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform__item {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease;
}
.platform__item:hover {
    transform: scale(1.05);
}

.platform__item img {
    max-height: 50px;
    object-fit: contain;
}

/* Team Slider */
.site-team-block {
    text-align: center;
}

.teams-slider-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0 3rem;
}

.teams-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 1.5rem;
}

.team-member {
    flex: 0 0 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 1.5rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--bs-quarternary);
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member .role {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.slider-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccd5df;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bullet.active {
    background-color: var(--bs-primary);
}

/* Reviews / Testimonials */
.site-testimonial-block {
    padding: 4rem 0;
}

.reviews-slider-container {
    overflow: hidden;
    position: relative;
    padding-bottom: 3rem;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.4s ease;
    gap: 1.5rem;
}

.review-card {
    flex: 0 0 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
}

.review-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review-card .rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.review-card .author {
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1rem;
}

.review-card .company {
    font-size: 0.85rem;
    color: #666;
}

/* Quick Contact Form Block */
.site-quick-contact {
    padding: 4rem 0;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(14, 49, 91, 0.08);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    background-color: var(--bs-primary);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.form-header p {
    margin-bottom: 0;
    opacity: 0.9;
}

.form-content {
    padding: 2.5rem;
}

.form-quick-contact .mini-contact__form-rows {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--bs-gray-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(34, 115, 186, 0.15);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    border-color: #dc3545 !important;
}

.form-error-msg {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Footer Section */
.footer {
    background-color: var(--bs-footer-bg);
    color: var(--bs-footer-color);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer--address {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer--location-link {
    color: #ffffff;
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding-left: 0;
    margin: 0 0 2.5rem;
}

.footer-menu a {
    color: #ffffff;
    font-weight: 500;
}
.footer-menu a:hover {
    opacity: 0.8;
}

.social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding-left: 0;
}

.social a {
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.social a:hover {
    transform: translateY(-4px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Sub-page Specific Layout Styles */
.inner-page-hero {
    background-color: var(--bs-quarternary);
    padding: 4rem 0;
    text-align: center;
}

.inner-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

.inner-page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
}

.sidebar-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 100%;
}

.sidebar-widget {
    background-color: var(--bs-quarternary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.widget-menu {
    list-style: none;
    padding-left: 0;
}

.widget-menu li {
    margin-bottom: 0.75rem;
}

.widget-menu li a {
    color: var(--bs-body-color);
}
.widget-menu li a:hover {
    color: var(--bs-primary);
}

/* Portfolio Page elements */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: #eee;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card-info {
    padding: 1.5rem;
}

.portfolio-card-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    font-size: 0.75rem;
    background-color: var(--bs-quarternary);
    color: var(--bs-tertiary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Animations */
.animate-start {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-start.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

/* Breakpoint Small (600px) */
@media (min-width: 600px) {
    .container {
        max-width: 568px;
    }
    
    .home-banner--content h1 {
        font-size: 2.5rem;
    }
    
    .image-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Breakpoint Medium (782px) */
@media (min-width: 782px) {
    .container {
        max-width: 746px;
    }
    
    .btn {
        width: auto;
    }
    
    .col-actions .btn-content {
        display: inline-block;
        font-size: 0.8rem;
    }
    
    .form-quick-contact .mini-contact__form-rows {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-quick-contact .mini-contact__form-rows .full-width {
        grid-column: span 2;
    }
}

/* Breakpoint Large (992px) */
@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .home-banner--inner-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
    
    .site-image-text--inner-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .site-image-text--row-reverse {
        direction: rtl;
    }
    
    .site-image-text--row-reverse > * {
        direction: ltr;
    }
    
    .image-columns-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .platforms {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-member {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
    
    .review-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
    
    .sidebar-layout {
        flex-direction: row;
    }
    
    .sidebar {
        width: 300px;
        flex-shrink: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Breakpoint Extra Large (1170px) */
@media (min-width: 1170px) {
    .container {
        max-width: 1140px;
    }
    
    #wrapper-navbar {
        height: 84px;
    }
    
    .header-container {
        padding: 0;
    }
    
    /* Toggle desktop navbar */
    .navbar-desktop {
        display: block;
        flex-grow: 1;
        margin-left: 2rem;
    }
    
    /* Allow mega dropdowns to align to full header container width */
    .nav-item {
        position: static;
    }
    
    .navbar-toggler {
        display: none;
    }
    
    main {
        padding-top: 84px;
    }
}

/* Breakpoint XXL (1530px) */
@media (min-width: 1530px) {
    .container {
        max-width: 1500px;
    }
    
    .home-banner--content h1 {
        font-size: 3.5rem;
    }
    
    .team-member {
        flex: 0 0 calc((100% - 4.5rem) / 4);
    }
    
    .review-card {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
}

/* Client Login Header Link */
.login-link-header {
    color: var(--bs-body-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1.5rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.login-link-header:hover {
    color: var(--bs-primary);
}

/* Featured Cases Section */
.site-cases-showcase {
    padding: 5rem 0;
}
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 782px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.case-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.case-card--img {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.case-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.case-card:hover .case-card--img img {
    transform: scale(1.05);
}
.case-card--badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bs-primary);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
}
.case-card--content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.case-card--content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.case-card--content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.case-card--metrics {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bs-gray-border);
}
.case-metric {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bs-green);
    margin-bottom: 0.25rem;
}
.case-metric--label {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
}

/* Workflow Section */
.site-process-workflow {
    padding: 5rem 0;
}
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 992px) {
    .workflow-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.workflow-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 115, 186, 0.1);
    position: relative;
    transition: border-color 0.3s ease;
}
.workflow-step:hover {
    border-color: var(--bs-primary);
}
.workflow-step--num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(34, 115, 186, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.workflow-step:hover .workflow-step--num {
    color: rgba(34, 115, 186, 0.2);
}
.workflow-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.workflow-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Accordion Section */
.site-faq-accordion {
    padding: 5rem 0;
}
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}
.faq-item {
    background: #ffffff;
    border: 1px solid var(--bs-gray-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item.active {
    border-color: var(--bs-primary);
}
.faq-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-body-color);
    cursor: pointer;
}
.faq-header--icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--bs-primary);
}
.faq-item.active .faq-header--icon {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content--inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Login Page Layout */
.login-page-body {
    background-color: var(--bs-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 84px - 150px);
    padding: 4rem 1rem;
}
.login-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(0,0,0,0.02);
}
.login-card h1 {
    font-size: 1.85rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}
.login-card--subtitle {
    color: #666;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}
.login-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.login-form label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--bs-body-color);
}
.login-form .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--bs-gray-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.login-form .form-control:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(34, 115, 186, 0.15);
}
.login-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}
.login-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
.login-form .checkbox-label input {
    margin-right: 0.5rem;
}
.login-form .forgot-link {
    color: var(--bs-primary);
    font-weight: 600;
}
.login-form .error-feedback {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: none;
    font-weight: 500;
}
