/* file: ./assets/css/style-hybrid.css */
/* Hybrid CSS - Combining WBC structure with modern accents */
/* Professional consulting with unexpected creative touches */

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography - Modern thin headers (from unique CSS) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 300;
}

h2 {
    font-size: 3rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 300;
}

h3 {
    font-size: 2.25rem;
    line-height: 1.3;
    font-weight: 300;
}

h4 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 400;
}

h5 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
}

h6 {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 600;
}

.highlight {
    color: #ee3524;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ee3524;
    margin-bottom: 0.75rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.os-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo a {
    font-family: 'Roboto', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #333333;
}

.logo a span {
    color: #ee3524;
    font-weight: 500;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #333333;
}

.nav-links a:hover {
    color: #ee3524;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333333;
}

.search-trigger {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #333333;
    transition: color 0.3s ease;
}

.search-trigger:hover {
    color: #ee3524;
}

/* ============================================
   BUTTONS (WBC style with rounded corners)
   ============================================ */
.os-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;

    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.os-btn.rounded {

}

.os-btn.outline {
    background-color: transparent;
    border-color: currentColor;
}

.os-btn.outline.black {
    color: #333333;
    border-color: #333333;
    background-color: transparent;
}

.os-btn.outline.black:hover {
    background-color: #333333;
    color: #ffffff;
}

.os-btn.outline.white {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
}

.os-btn.outline.white:hover {
    background-color: #ffffff;
    color: #333333;
}

.os-btn.white {
    background-color: #ffffff;
    color: #333333;
}

.os-btn.white:hover {
    background-color: #ee3524;
    color: #ffffff;
    border-color: #ee3524;
}

.os-btn.black {
    background-color: #333333;
    color: #ffffff;
}

.os-btn.black:hover {
    background-color: #ee3524;
    border-color: #ee3524;
}

.btn-white {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background-color: #ffffff;
    color: #333333;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;

    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-white:hover {
    background-color: #ee3524;
    color: #ffffff;
}

.btn-rounded {

}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ee3524;
    transition: gap 0.3s ease;
}

.learn-more-link:hover {
    gap: 0.75rem;
}

/* ============================================
   HERO BANNER (WBC style)
   ============================================ */
.os-intro-banner {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 -1.5rem;
    border-radius: 0;
}

.os-intro-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.os-intro-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    padding: 3rem;
}

.os-intro-banner h1 {
    color: #ffffff;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.os-intro-banner .banner-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FEATURES SECTION (3 columns with icons)
   ============================================ */
.vc_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
    gap: 20px;
}

.vc_row.vc_row-has-fill {
    background-color: #f8f9fa;
}

.vc_custom_1487206345581 {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vc_custom_1487205718200 {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.wpb_column {
    flex: 1;
}

.vc_col-sm-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.vc_col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.os-feature-with-icon {
    text-align: center;
    padding: 2rem 1rem;
}

.fwi-icon {
    font-size: 3rem;
    color: #ee3524;
    margin-bottom: 1.5rem;
}

.fwi-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.fwi-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ============================================
   CTA BLOCK (with background image)
   ============================================ */
.os-cta-block {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    margin: 4rem 0;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.os-cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 12px;
    z-index: 1;
}

.os-cta-block .cta-content {
    position: relative;
    z-index: 2;
}

.os-cta-block h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.os-cta-block p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ============================================
   TEXT & IMAGE SECTIONS (alternating)
   ============================================ */
.os-text-and-image {
    margin: 4rem 0;
}

.container-fluid {
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
    gap: 20px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
}

.sm-reverse {
    flex-direction: row-reverse;
}

.os-ti-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.os-ti-content-left {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.os-ti-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.os-ti-content-left p {
    margin-bottom: 1.5rem;
    color: #555555;
}

/* Lists with icons */
.expertise-list,
.principles-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li,
.principles-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555555;
}

.expertise-list li i,
.principles-list li i {
    color: #ee3524;
    font-size: 1.125rem;
    width: 1.5rem;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.newsletter-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a2e 100%);
    border-radius: 12px;
    color: #ffffff;
}

.newsletter-wrapper h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-wrapper p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.5rem;
    border: none;

    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ee3524;
}

.newsletter-wrapper small {
    display: block;
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #1a1a2e;
    color: #999999;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-col .logo a {
    color: #ffffff;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #999999;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ee3524;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-info li i {
    margin-top: 0.25rem;
    color: #ee3524;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ee3524;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eeeeee;
}

.search-modal-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.search-modal-header h3 i {
    color: #ee3524;
    margin-right: 0.5rem;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999999;
    transition: color 0.3s ease;
}

.search-modal-close:hover {
    color: #ee3524;
}

.search-modal-body {
    padding: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid #dddddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.search-input:focus {
    outline: none;
    border-color: #ee3524;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-placeholder {
    text-align: center;
    padding: 2rem;
    color: #999999;
}

.search-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: #999999;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.3s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.search-result-category {
    font-size: 0.875rem;
    color: #ee3524;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .vc_col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .vc_custom_1487205718200 {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .os-ti-image {
        min-height: 300px;
        margin-bottom: 1.5rem;
    }

    .sm-reverse {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .os-intro-banner h1 {
        font-size: 2.5rem;
    }

    .banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .os-cta-block {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }

    .os-ti-content-left {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .os-intro-banner .banner-content {
        padding: 2rem 1rem;
    }

    .os-intro-banner h1 {
        font-size: 1.75rem;
    }

    .os-ti-image {
        min-height: 200px;
    }
}

/* ============================================
   POPUP NOTIFICATION STYLES
   ============================================ */

.popup-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    pointer-events: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #ffffff;
    border-radius: 12px;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid;
    pointer-events: auto;
    min-width: 260px;
    max-width: 350px;
}

.popup-content i {
    font-size: 1.25rem;
}

/* Success popup (green) */
.popup-content.success {
    border-left-color: #28a745;
    background: #ffffff;
}

.popup-content.success i {
    color: #28a745;
}

/* Error popup (red) */
.popup-content.error {
    border-left-color: #dc3545;
    background: #ffffff;
}

.popup-content.error i {
    color: #dc3545;
}

/* Optional: Warning popup */
.popup-content.warning {
    border-left-color: #ffc107;
    background: #ffffff;
}

.popup-content.warning i {
    color: #ffc107;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .popup-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .popup-content {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
.col-md-3 {
    width: calc(100% / 4);
    min-width: 320px;
}
.col-md-4 {
    width: calc(100% / 3);
    min-width: 320px;
}
