@charset "UTF-8";

/* ===================================
   Quick Menu (Portfolio)
=================================== */
.quick-menu {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow: hidden;
}

.quick-menu__title {
    padding: 25px 20px 15px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
}

.quick-menu__list {
    list-style: none;
    padding: 10px 0;
}

.quick-menu__list li {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.quick-menu__list li.active {
    border-left-color: #0066cc;
    background: #f8f9fa;
}

.quick-menu__list li a {
    display: block;
    padding: 12px 20px 12px 30px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-menu__list li a:hover {
    color: #0066cc;
    background: #f8f9fa;
}

.quick-menu__list li.active a {
    color: #0066cc;
    font-weight: 600;
}

.quick-menu__logo {
    padding: 20px 20px 20px 30px;
    text-align: left;
    border-top: 1px solid #eee;
}

.quick-menu__logo img {
    height: 30px;
    width: auto;
    opacity: 0.7;
}

@media (max-width: 1400px) {
    .quick-menu {
        display: none;
    }
}

/* ===================================
   Page Header
=================================== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/company/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 80px;
    text-align: center;
}

.page-header__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.page-header__breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-header__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header__breadcrumb a:hover {
    color: #fff;
}

.page-header__breadcrumb span {
    margin: 0 8px;
}

/* ===================================
   Portfolio Section
=================================== */
.portfolio {
    padding: 80px 20px;
    background: #f8f9fa;
}

.portfolio__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Search */
.portfolio__search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px;
}

.portfolio__search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.portfolio__search input:focus {
    border-color: #0066cc;
}

.portfolio__search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
}

/* Filter */
.portfolio__filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio__filter label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.portfolio__filter select {
    padding: 12px 40px 12px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 150px;
}

.portfolio__filter select:focus {
    outline: none;
    border-color: #0066cc;
}

.portfolio__filter select:hover {
    border-color: #0066cc;
}

/* Table */
.portfolio__table {
    display: none;
}

.portfolio__table.active {
    display: block;
}

.portfolio__table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.portfolio__table th {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #1a1a1a;
    text-align: left;
}

.portfolio__table th:first-child {
    width: 70%;
}

.portfolio__table th:last-child {
    width: 30%;
}

.portfolio__table td {
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.portfolio__table tr:last-child td {
    border-bottom: none;
}

.portfolio__table tr:hover td {
    background: #f8f9fa;
}

.portfolio__table .no-data {
    text-align: center;
    color: #888;
    padding: 50px 20px;
}

/* ===================================
   CTA Simple
=================================== */
.cta-simple {
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/cta.jpg');
    background-size: cover;
    background-position: center 70%;
}

.cta-simple__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cta-simple__text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.btn--primary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    background: #0066cc;
    color: #fff;
    border: 2px solid #0066cc;
    transition: all 0.3s ease;
}

.btn--primary:hover {
    background: #0052a3;
    border-color: #0052a3;
}

/* ===================================
   Scroll Fade Animation
=================================== */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Floating Buttons
=================================== */
.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating__btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating__btn i {
    font-size: 20px;
}

.floating__btn--phone {
    background: #28a745;
    color: #fff;
}

.floating__btn--contact {
    background: #0066cc;
    color: #fff;
}

.floating__btn--top {
    background: #fff;
    color: #333;
    opacity: 0;
    visibility: hidden;
}

.floating__btn--top.visible {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header__title {
        font-size: 32px;
    }
    
    .portfolio {
        padding: 60px 20px;
    }
    
    .portfolio__tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .portfolio__table th,
    .portfolio__table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .portfolio__table th:first-child {
        width: 60%;
    }
    
    .portfolio__table th:last-child {
        width: 40%;
    }
    
    .cta-simple__container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-simple__text {
        font-size: 18px;
    }
}