/* === index.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }

/* === team.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .page-content {
            flex: 1;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us / Team */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
        }

        .about-section .member-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            height: 320px;
            background-color: #f0f0f0;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .about-section .member-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-section .photo-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-section .photo-placeholder i {
            font-size: 4rem;
            color: #fff;
            opacity: 0.8;
        }

        .about-section .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.95);
            color: #fff;
            padding: 16px;
            text-align: center;
        }

        .about-section .member-info h4 {
            color: #fff;
            margin: 0 0 6px 0;
            font-size: 1.15rem;
        }

        .about-section .member-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 0.9rem;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }

/* === docs.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .page-content {
            flex: 1;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us / Team */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 17px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .docs-links {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .doc-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s, border-color 0.3s, color 0.3s;
        }

        .doc-link:hover {
            background: #e8f0fa;
            border-color: #0066cc;
            color: #004499;
        }

        .doc-link i {
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
        }

        .about-section .member-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            height: 320px;
            background-color: #f0f0f0;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .about-section .member-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-section .photo-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-section .photo-placeholder i {
            font-size: 4rem;
            color: #fff;
            opacity: 0.8;
        }

        .about-section .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.95);
            color: #fff;
            padding: 16px;
            text-align: center;
        }

        .about-section .member-info h4 {
            color: #fff;
            margin: 0 0 6px 0;
            font-size: 1.15rem;
        }

        .about-section .member-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 0.9rem;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }

/* === info.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .page-content {
            flex: 1;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us / Info */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content--info {
            text-align: left;
        }

        .about-content--info h2 {
            margin-top: 0;
            margin-bottom: 12px;
            text-align: center;
        }

        .about-content--info .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 28px;
        }

        .about-content--info .about-lead {
            font-size: 18px;
            color: #1a1a1a;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-content--info p {
            font-size: 16px;
            color: #444;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .about-content--info h3 {
            font-size: 22px;
            color: #1a1a1a;
            margin-top: 36px;
            margin-bottom: 14px;
        }

        .about-content--info h4 {
            font-size: 17px;
            color: #333;
            margin-top: 24px;
            margin-bottom: 10px;
        }

        .about-content--info ul {
            margin: 0 0 18px 0;
            padding-left: 24px;
        }

        .about-content--info li {
            margin-bottom: 8px;
            line-height: 1.6;
            color: #444;
        }

        .about-content--info .about-notice {
            background: #f8f4e8;
            border-left: 4px solid #c9a227;
            padding: 16px 20px;
            margin-top: 24px;
            margin-bottom: 24px;
            border-radius: 0 8px 8px 0;
        }

        .about-content--info .about-checklist {
            list-style: none;
            padding-left: 0;
        }

        .about-content--info .about-checklist li {
            margin-bottom: 10px;
            padding-left: 0;
        }

        .about-content--info .about-cta {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .about-content--info .about-cta .btn-primary {
            padding: 16px 32px;
            font-size: 16px;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
        }

        .about-section .member-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            height: 320px;
            background-color: #f0f0f0;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .about-section .member-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-section .photo-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-section .photo-placeholder i {
            font-size: 4rem;
            color: #fff;
            opacity: 0.8;
        }

        .about-section .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.95);
            color: #fff;
            padding: 16px;
            text-align: center;
        }

        .about-section .member-info h4 {
            color: #fff;
            margin: 0 0 6px 0;
            font-size: 1.15rem;
        }

        .about-section .member-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 0.9rem;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }

/* === procedure.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .page-content {
            flex: 1;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us / Team */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .about-content--procedure .section-subtitle {
            margin-bottom: 40px;
        }

        .procedure-steps {
            max-width: 720px;
            margin: 0 auto 40px;
            text-align: left;
        }

        .procedure-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 28px;
            padding: 20px 0;
            border-bottom: 1px solid #e8e8e8;
        }

        .procedure-step:last-of-type {
            margin-bottom: 0;
            border-bottom: none;
        }

        .procedure-step-num {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: transparent;
            color: #666;
            font-size: 16px;
            font-weight: 600;
            border: 1px solid #d0d0d0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .procedure-step-body h3 {
            font-size: 17px;
            color: #333;
            margin: 0 0 8px 0;
            font-weight: 600;
        }

        .procedure-step-body p {
            font-size: 15px;
            color: #555;
            line-height: 1.65;
            margin: 0;
        }

        .procedure-cta {
            text-align: center;
            margin-top: 36px;
        }

        .procedure-cta .btn-primary {
            padding: 14px 28px;
            font-size: 15px;
        }

        @media (max-width: 600px) {
            .procedure-step {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                gap: 12px;
            }
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
        }

        .about-section .member-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            height: 320px;
            background-color: #f0f0f0;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .about-section .member-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-section .photo-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-section .photo-placeholder i {
            font-size: 4rem;
            color: #fff;
            opacity: 0.8;
        }

        .about-section .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.95);
            color: #fff;
            padding: 16px;
            text-align: center;
        }

        .about-section .member-info h4 {
            color: #fff;
            margin: 0 0 6px 0;
            font-size: 1.15rem;
        }

        .about-section .member-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 0.9rem;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }

/* === contact.php === */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .page-content {
            flex: 1;
        }

        button {
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1002;
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
        }

        .logo {
            background: #fff;
            color: #fff;
            padding: 20px 30px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            max-height: 40px;
            width: auto;
            display: block;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: space-between;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav ul li:not(.dropdown) > a::after {
            display: none;
        }

        nav ul li a:hover {
            color: #0066cc;
        }

        .dropdown > a::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid #333;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown {
            position: relative;
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
            z-index: 1000;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: #003366;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            min-width: 600px;
            padding: 30px;
            z-index: 1001;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .dropdown-column {
            text-align: left;
        }

        .dropdown-column h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: left;
        }

        .dropdown-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-align: left;
            align-items: flex-start;
            width: 100%;
        }

        .dropdown-column ul li {
            margin: 0;
            text-align: left;
            width: 100%;
            align-self: flex-start;
        }

        .dropdown-column a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            padding: 10px 0;
            display: block;
            transition: text-decoration 0.3s;
            text-align: left;
            width: 100%;
        }

        .dropdown-column a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .dropdown-column a::after {
            display: none;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-header {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.3s;
        }

        .btn-header:hover {
            opacity: 0.9;
        }

        .btn-salary {
            background: #d4a574;
        }

        .btn-outsource {
            background: #8b6f47;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 10px;
        }

        .lang-selector::before {
            content: 'A';
            font-weight: bold;
            font-size: 16px;
        }

        .lang-selector::after {
            display: none;
        }

        .mobile-menu {
            display: none;
        }

        @media (min-width: 861px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .mobile-menu-toggle::before {
            content: '☰';
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .mobile-menu-toggle::before {
            content: '✕';
        }

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 34, 68, 0.75) 100%),
                url('bg.jpg') center center no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            background: transparent;
            border-radius: 5px;
        }

        .search-box form {
            display: flex;
            flex: 1;
            min-width: 200px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .search-box form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .search-box form button {
            padding: 18px 35px;
            background: #003366;
            color: #fff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-items: center;
            gap: 8px;
        }

        .search-box form button:hover {
            background: #004488;
        }

        .search-box .search-error {
            width: 100%;
            flex-basis: 100%;
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
            min-height: 20px;
        }
        .search-box .search-error:not(:empty) {
            color: #ffb3b3;
        }

        /* Featured Clients */
        .featured-clients {
            padding: 60px 20px;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        /* Featured Clients Carousel */
        .featured-clients .brands-carousel {
            position: relative;
            margin-top: 20px;
            padding: 0 50px;
        }

        .featured-clients .brands-container {
            overflow: hidden;
            position: relative;
        }

        .featured-clients .brands-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .featured-clients .brand-item {
            flex-shrink: 0;
            width: 180px;
        }

        .featured-clients .brand-item .client-logo {
            width: 100%;
            box-sizing: border-box;
        }

        .featured-clients .brand-item .client-logo:hover {
            transform: none;
        }

        .featured-clients .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #003366;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
        }

        .featured-clients .carousel-btn:hover {
            background: #004488;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-clients .carousel-prev {
            left: 0;
        }

        .featured-clients .carousel-next {
            right: 0;
        }

        .featured-clients .carousel-btn {
            display: none;
        }

        /* Latest Projects */
        .latest-projects {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .project-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            transition: box-shadow 0.3s;
        }

        .project-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .project-card-header .project-title {
            margin-bottom: 0;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-card-logo {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f9fa;
        }

        .project-card-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .project-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .project-badge {
            display: inline-block;
            padding: 5px 12px;
            background: #0066cc;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .project-location {
            color: #666;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: #0066cc;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 20px;
        }

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

        .text-center {
            text-align: center;
        }

        /* Companies Section / Facts */
        .companies-section {
            padding: 80px 20px;
            position: relative;
            background: #f8f9fa;
        }

        .companies-section-overlay {
            display: none;
        }

        .companies-section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .companies-facts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .companies-fact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .companies-fact-marker {
            display: block;
            width: 8px;
            height: 8px;
            min-width: 8px;
            background: #0066cc;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .companies-fact-item p {
            font-size: 17px;
            line-height: 1.5;
            color: #333;
            margin: 0;
            font-weight: 500;
        }

        .companies-facts-cta {
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* About Us / Team */
        .about-section {
            padding: 80px 20px;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .about-content .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .contact-manager-block {
            max-width: 400px;
            margin: 0 auto;
        }

        .contact-manager-card {
            text-align: center;
            padding: 40px 32px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }

        .contact-manager-photo {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .contact-manager-photo img {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
        }

        .contact-manager-placeholder {
            width: 96px;
            height: 96px;
            margin: 0 auto;
            border-radius: 50%;
            background: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-manager-placeholder i {
            font-size: 2rem;
            color: #8a9ba8;
        }

        .contact-manager-info h3 {
            font-size: 20px;
            color: #1a1a1a;
            margin: 0 0 6px 0;
            font-weight: 600;
        }

        .contact-manager-desc {
            font-size: 14px;
            color: #666;
            margin: 0 0 24px 0;
        }

        .contact-manager-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 20px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            transition: background 0.25s, opacity 0.25s;
        }

        .btn-contact.btn-whatsapp {
            background: #25d366;
            color: #fff;
        }

        .btn-contact.btn-whatsapp:hover {
            background: #20bd5a;
            opacity: 0.95;
        }

        .btn-contact.btn-telegram {
            background: #0088cc;
            color: #fff;
        }

        .btn-contact.btn-telegram:hover {
            background: #0077b5;
            opacity: 0.95;
        }

        .reviews-carousel-wrap {
            max-width: 640px;
            margin: 48px auto 0;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }

        .reviews-title {
            font-size: 18px;
            color: #333;
            margin: 0 0 24px 0;
            text-align: center;
            font-weight: 600;
        }

        .reviews-carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .reviews-carousel-btn {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: background 0.25s, border-color 0.25s, color 0.25s;
        }

        .reviews-carousel-btn:hover {
            background: #f5f5f5;
            border-color: #ccc;
            color: #333;
        }

        .reviews-track-wrap {
            flex: 1;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.35s ease;
        }

        .review-card {
            flex: 0 0 100%;
            min-width: 0;
            padding: 24px 20px;
            background: #fafafa;
            border-radius: 12px;
            border: 1px solid #eee;
            text-align: left;
        }

        .review-name {
            display: block;
            font-size: 14px;
            color: #333;
            font-weight: 600;
            margin: 0 0 12px 0;
        }

        .review-text {
            font-size: 15px;
            color: #444;
            line-height: 1.65;
            margin: 0;
        }

        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .reviews-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.25s;
        }

        .reviews-dots span.active {
            background: #0066cc;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
        }

        .about-section .member-photo {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            height: 320px;
            background-color: #f0f0f0;
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        .about-section .member-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-section .photo-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-section .photo-placeholder i {
            font-size: 4rem;
            color: #fff;
            opacity: 0.8;
        }

        .about-section .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.95);
            color: #fff;
            padding: 16px;
            text-align: center;
        }

        .about-section .member-info h4 {
            color: #fff;
            margin: 0 0 6px 0;
            font-size: 1.15rem;
        }

        .about-section .member-info p {
            color: rgba(255,255,255,0.9);
            margin: 0;
            font-size: 0.9rem;
        }

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

        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
        }

        /* Salary Survey */
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-form-section .section-title {
            margin-bottom: 10px;
        }

        .contact-form-section .section-subtitle {
            margin-bottom: 40px;
        }

        .contact-form-section .form-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

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

        .contact-form-section .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .contact-form-section .contact-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form-section .contact-form-group input:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
        }

        .contact-form-section .btn-primary {
            width: 100%;
            padding: 16px 24px;
            margin-top: 10px;
        }

        .survey-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .survey-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            margin-top: 30px;
        }

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

        .form-group select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
            color: #fff;
        }

        /* Tips & Articles */
        .tips-section {
            padding: 80px 20px;
        }

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

        .article-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }

        .article-content {
            padding: 25px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 12px;
            background: #e8f4f8;
            color: #0066cc;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .article-excerpt {
            color: #666;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 20px;
            background: #fff;
        }

        .faq .section-title {
            margin-bottom: 40px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #0066cc;
            color: #fff;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #0052a3;
        }

        .faq-question span {
            font-weight: 600;
            font-size: 16px;
        }

        .faq-question i {
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            padding: 18px 24px;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 14px;
        }

        .footer-column p:last-child {
            margin-bottom: 0;
        }

        .footer-column p i {
            margin-right: 8px;
            width: 1.2em;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-wrapper {
                padding: 0 10px;
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 13px;
            }
        }

        @media (max-width: 860px) {
            .header-buttons {
                display: none;
            }
            
            .header-main {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 15px;
            }

            .logo {
                width: auto;
                flex-shrink: 0;
            }

            .nav-wrapper {
                flex: 1;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

            nav {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                margin-left: auto;
                color: #333;
            }

            header {
                position: relative;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100vh;
                background: #003366;
                z-index: 1001;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                overflow-y: auto;
                display: block;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            }

            .mobile-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .mobile-menu ul {
                display: flex;
                flex-direction: column;
                padding: 0;
                margin: 0;
                margin-top: 80px;
                list-style: none;
                gap: 0;
            }

            .mobile-menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu ul li a {
                padding: 20px;
                width: 100%;
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

            .mobile-menu ul li a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
            }

            .mobile-menu .dropdown > a::after {
                border-top-color: #fff;
            }

            .mobile-menu .dropdown:hover > a::after {
                transform: none;
            }

            .mobile-menu .dropdown.active > a::after {
                transform: rotate(180deg);
            }

            .mobile-menu .dropdown:hover .dropdown-content {
                display: none;
            }

            .mobile-menu .dropdown-content {
                position: static;
                display: none;
                min-width: 100%;
                margin-top: 0;
                box-shadow: none;
                background: transparent;
                padding: 0;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .mobile-menu .dropdown.active .dropdown-content {
                display: grid;
            }

            .mobile-menu .dropdown-column {
                padding: 0;
            }

            .mobile-menu .dropdown-column ul {
                padding: 0;
                margin: 0;
                margin-top: 0;
            }

            .mobile-menu .dropdown-column ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu .dropdown-column a {
                padding: 15px 20px 15px 40px;
                font-weight: 400;
                font-size: 14px;
            }

            .mobile-menu .dropdown-column h4 {
                display: none;
            }

            .mobile-menu .mobile-menu-button {
                border-bottom: none;
                margin-top: 20px;
                padding: 20px;
            }

            .mobile-menu .mobile-menu-button a {
                display: block;
                text-align: center;
                padding: 15px 30px;
                border-radius: 5px;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 60px 20px;
                text-align: center;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-box form {
                flex-direction: column;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* Manager Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: #fff;
            margin: auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .modal .close {
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
        }
        .modal .close:hover { opacity: 0.7; }
        .manager-info { text-align: center; }
        .manager-photo { margin-bottom: 1.5rem; }
        .manager-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #0066cc;
        }
        .photo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, #0066cc, #004499);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .photo-placeholder i { font-size: 3rem; color: #fff; opacity: 0.8; }
        .manager-info h3 { color: #666; font-size: 1.1rem; margin-bottom: 0.5rem; }
        .manager-info h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 2rem; }
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover { background: #128c7e; }
        .btn-telegram {
            background: #0088cc;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-telegram:hover { background: #006699; }
        @media (max-width: 768px) {
            .modal-content { width: 95%; padding: 1.5rem; }
            .contact-buttons { flex-direction: column; align-items: center; }
            .btn-whatsapp, .btn-telegram { width: 100%; justify-content: center; }
        }