/* ===========================
   RESET & BASE STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #eedec5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 0;
}

/* ===========================
   SCROLLBAR - TRANSPARAN
=========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(176, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(176, 0, 0, 0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(176, 0, 0, 0.2) transparent;
}

/* ===========================
   CONTAINER
=========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===========================
   HEADER / NAVIGATION - STICKY
=========================== */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(146, 125, 125, 0.25);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
    top: 10px;
    width: calc(100% - 40px);
}

header.scrolled .Logo-Image {
    width: 45px;
    max-height: 45px;
}

header.scrolled .logo-text {
    font-size: 20px;
}

header.scrolled .menu > li > a {
    padding: 6px 16px;
    font-size: 13px;
}

header.scrolled .lang-btn {
    padding: 5px 12px;
    font-size: 12px;
}

/* ===========================
   LOGO STYLES
=========================== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.Logo-Image {
    width: 58px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #b00000;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* ===========================
   MAIN MENU
=========================== */
.menu {
    display: flex;
    gap: 5px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    position: relative;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 15px;
    transition: .3s;
    z-index: 2;
    border-radius: 50px;
    cursor: pointer;
}

.menu > li > a i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.menu > li:hover > a i {
    transform: rotate(180deg);
}

.menu > li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff2d2d, #ff7777);
    border-radius: 50px;
    transform: scale(0);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    z-index: -1;
}

.menu > li > a:hover {
    color: white;
}

.menu > li > a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(146, 125, 125, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(146, 125, 125, 0.15);
    border-left: 1px solid rgba(146, 125, 125, 0.15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: transparent;
}

.dropdown-menu a:hover {
    background: rgba(176, 0, 0, 0.05);
    color: #b00000;
    border-left-color: #b00000;
    padding-left: 30px;
}

.dropdown-menu a::before {
    display: none;
}

/* ===========================
   LANGUAGE SWITCHER - PALING KANAN
=========================== */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: transparent;
    color: #555;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    border-radius: 30px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 0;
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-btn span {
    position: relative;
    z-index: 1;
}

.lang-btn:hover {
    border-color: #b00000;
    color: #b00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 0, 0, 0.15);
}

.lang-btn:hover::before {
    transform: scale(1);
    opacity: 0.05;
}

.lang-btn.active {
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    border-color: #b00000;
    color: white;
    box-shadow: 0 4px 20px rgba(176, 0, 0, 0.3);
    transform: translateY(-2px);
}

.lang-btn.active::before {
    display: none;
}

.lang-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(176, 0, 0, 0.4);
}

.lang-btn.active {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(176, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(176, 0, 0, 0.5);
    }
}

/* ===========================
   HERO SECTION - FULL BACKGROUND
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 0px);
    min-height: 600px;
    background: url("HomeBG-1280.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 0;
}

/* Fallback jika gambar tidak ditemukan */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin-left: 8%;
}

.hero h1 {
    font-size: 65px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    min-height: 1.2em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    color: #f3f3f3;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    transition: .35s ease;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(176, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255,0,0,.4);
}

.btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    transition: .35s ease;
    font-weight: 600;
    display: inline-block;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: #b00000;
    border-color: white;
}

/* ===========================
   ABOUT US / VISION & MISSION
=========================== */
.AboutUs {
    padding: 120px 0;
    background: #ffffff;
    flex-shrink: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    font-size: 18px;
}

.about-description {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-description p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-description .about-tagline {
    font-size: 22px;
    font-weight: 700;
    color: #b00000;
    letter-spacing: 1px;
    margin-top: 10px;
    font-style: italic;
}

.vm-section {
    scroll-margin-top: 100px;
}

.vm-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: #f8f9fb;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: all .35s ease;
    border-top: 5px solid #e53935;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,0,0,.15);
}

.vm-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    box-shadow: 0 10px 25px rgba(255,0,0,.25);
    transition: .35s ease;
}

.vm-icon i {
    font-size: 48px;
    color: #ffffff;
    transition: .35s ease;
}

.vm-card:hover .vm-icon {
    transform: rotate(10deg) scale(1.08);
}

.vm-card:hover .vm-icon i {
    transform: scale(1.15);
}

.vm-card h3 {
    font-size: 32px;
    color: #b00000;
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #4d4242;
}

.vm-card ul {
    padding-left: 22px;
    margin-top: 10px;
}

.vm-card li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.vm-card li::marker {
    color: #e53935;
}

/* ===========================
   COMPANY VALUES - VERTICAL LIST WITH LINES (TANPA NOMOR)
=========================== */
.company-values-section {
    scroll-margin-top: 100px;
    margin-top: 30px;
}

.values-vertical-list {
    max-width: 750px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 6px 0;
}

/* ===== SETIAP ITEM VALUES ===== */
.value-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    transition: all 0.3s ease;
    border-bottom: 1.5px solid #f0f0f0;
    position: relative;
    background: #ffffff;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item:hover {
    background: #fcf8f8;
    padding-left: 32px;
}

/* ===== GARIS MERAH DI SAMPING KIRI ===== */
.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 3px;
    background: linear-gradient(180deg, #b00000, #ff3b3b);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scaleY(0);
}

.value-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* ===== TEXT WRAPPER - MENJULANG KE BAWAH ===== */
.value-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 0 10px 0 0;
    gap: 1px;
}

/* ===== HURUF PERTAMA DI GEDEIN DAN MERAH ===== */
.value-text-wrapper .main-text {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.2px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Huruf pertama (H, A, R, M, O, N, I) - BESAR MERAH */
.value-text-wrapper .main-text .initial {
    font-size: 26px;
    font-weight: 900;
    color: #b00000;
    display: inline-block;
    transition: all 0.4s ease;
    margin-right: 1px;
}

.value-item:hover .value-text-wrapper .main-text .initial {
    transform: scale(1.1);
    text-shadow: 0 2px 12px rgba(176, 0, 0, 0.25);
}

.value-item:hover .value-text-wrapper .main-text {
    color: #222;
}

.value-text-wrapper .sub-text {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.value-item:hover .value-text-wrapper .sub-text {
    color: #666;
}

/* ===== ICON DI KANAN ===== */
.value-icon-right {
    font-size: 20px;
    color: #b00000;
    opacity: 0.25;
    min-width: 34px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon-right {
    opacity: 1;
    transform: scale(1.1) rotate(-5deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .values-vertical-list {
        max-width: 100%;
        margin: 24px 10px 0;
        border-radius: 14px;
        padding: 4px 0;
    }
    
    .value-item {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .value-item:hover {
        padding-left: 22px;
    }
    
    .value-text-wrapper {
        padding: 0 8px 0 0;
    }
    
    .value-text-wrapper .main-text {
        font-size: 15px;
    }
    
    .value-text-wrapper .main-text .initial {
        font-size: 24px;
    }
    
    .value-text-wrapper .sub-text {
        font-size: 12px;
    }
    
    .value-icon-right {
        font-size: 18px;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .values-vertical-list {
        margin: 18px 6px 0;
        border-radius: 12px;
        padding: 4px 0;
    }
    
    .value-item {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 1px;
    }
    
    .value-item:hover {
        padding-left: 16px;
    }
    
    .value-text-wrapper {
        padding: 0 4px 0 0;
        gap: 0px;
    }
    
    .value-text-wrapper .main-text {
        font-size: 13px;
    }
    
    .value-text-wrapper .main-text .initial {
        font-size: 20px;
    }
    
    .value-text-wrapper .sub-text {
        font-size: 11px;
    }
    
    .value-icon-right {
        font-size: 15px;
        min-width: 26px;
    }
}

@media (max-width: 360px) {
    .value-item {
        padding: 8px 8px;
        gap: 1px;
    }
    
    .value-text-wrapper .main-text {
        font-size: 11px;
    }
    
    .value-text-wrapper .main-text .initial {
        font-size: 17px;
    }
    
    .value-text-wrapper .sub-text {
        font-size: 10px;
    }
    
    .value-icon-right {
        font-size: 13px;
        min-width: 20px;
    }
}

/* ===== SECTION TITLE - DIPERKECIL ===== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 38px;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        margin-bottom: 24px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 13px;
    }
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-section .section-title h2 {
    color: #ffffff;
}

.services-section .section-title p {
    color: #aaaaaa;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.service-category {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 40px 35px 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b00000, #ff3b3b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-category:hover::before {
    transform: scaleX(1);
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(176, 0, 0, 0.2);
    border-bottom-color: #e53935;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    border-radius: 16px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.service-category:hover .service-icon-large {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 16px;
    color: #cccccc;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    padding-left: 8px;
    color: #ff3b3b;
}

.service-list li i {
    color: #e53935;
    font-size: 20px;
    min-width: 24px;
    transition: all 0.3s ease;
}

.service-list li:hover i {
    transform: scale(1.2);
}

/* ===========================
   PROJECT SECTION
=========================== */
.project-section {
    padding: 120px 0;
    background: #ffffff;
}

.project-section .section-title h2 {
    color: #222;
}

.project-section .section-title p {
    color: #777;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: transparent;
    color: #555;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #b00000;
    color: #b00000;
}

.filter-btn.active {
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    border-color: #b00000;
    color: white;
    box-shadow: 0 8px 25px rgba(176, 0, 0, 0.25);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: #f8f9fb;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(176, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-left-color: #b00000;
}

.project-card.hidden {
    display: none;
}

.project-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    border-radius: 14px;
    color: white;
    font-size: 24px;
    transition: all 0.4s ease;
}

.project-card:hover .project-icon {
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(176, 0, 0, 0.3);
}

.project-content {
    flex: 1;
}

.project-content h3 {
    font-size: 18px;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-location {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-location i {
    color: #b00000;
    font-size: 14px;
}

.project-status {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    width: fit-content;
}

.project-status.completed {
    background: #d4edda;
    color: #155724;
}

.project-status.completed i {
    color: #28a745;
}

.project-status.ongoing {
    background: #fff3cd;
    color: #856404;
}

.project-status.ongoing i {
    color: #ffc107;
}

.project-status.upcoming {
    background: #cce5ff;
    color: #004085;
}

.project-status.upcoming i {
    color: #007bff;
}

/* ===========================
   CAREER SECTION
=========================== */
.career-section {
    padding: 120px 0;
    background: #f5f0ea;
    flex: 1;
    margin: 0;
}

.career-section .section-title h2 {
    color: #222;
}

.career-section .section-title p {
    color: #777;
}

.career-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.career-form {
    background: #ffffff;
    padding: 60px 55px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.career-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-form .form-group label {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.career-form .form-group label i {
    color: #b00000;
    margin-right: 10px;
    font-size: 18px;
}

.career-form .form-group input,
.career-form .form-group textarea {
    padding: 18px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 17px;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #222;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.career-form .form-group input::placeholder,
.career-form .form-group textarea::placeholder {
    color: #999;
}

.career-form .form-group input {
    height: 62px;
}

.career-form .form-group textarea {
    min-height: 120px;
    padding: 18px 22px;
    resize: vertical;
}

.career-form .form-group input:focus,
.career-form .form-group textarea:focus {
    outline: none;
    border-color: #b00000;
    box-shadow: 0 0 0 4px rgba(176, 0, 0, 0.1);
}

/* File Drop Zone */
.file-drop-zone {
    border: 2px dashed #d0d0d0;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    position: relative;
}

.file-drop-zone:hover {
    border-color: #b00000;
    background: #fff5f5;
}

.file-drop-zone.dragover {
    border-color: #b00000;
    background: #ffebeb;
    transform: scale(1.02);
}

.file-drop-zone i {
    font-size: 48px;
    color: #b00000;
    margin-bottom: 15px;
    display: block;
}

.file-drop-zone p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.file-drop-zone .file-hint {
    font-size: 13px;
    color: #999;
}

.file-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

.file-info i {
    color: #b00000;
    font-size: 20px;
}

.file-info span {
    flex: 1;
    color: #333;
    font-weight: 500;
    word-break: break-all;
}

.file-info .remove-file {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.file-info .remove-file:hover {
    transform: scale(1.2);
    color: #a71d2a;
}

.career-submit-btn {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

#careerMessage {
    margin-top: 20px;
    padding: 18px 24px;
    border-radius: 12px;
    display: none;
    font-weight: 500;
    font-size: 16px;
    animation: slideDown 0.3s ease;
    text-align: center;
}

#careerMessage.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#careerMessage.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
    padding: 120px 0;
    background: #0a0a0a;
    flex: 1;
    margin: 0;
}

.contact-section .section-title h2 {
    color: #ffffff;
}

.contact-section .section-title p {
    color: #aaaaaa;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.contact-form {
    background: #1a1a1a;
    padding: 60px 55px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}

.form-group label i {
    color: #e53935;
    margin-right: 10px;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    padding: 18px 22px;
    border: 2px solid #333;
    border-radius: 12px;
    font-size: 17px;
    transition: all 0.3s ease;
    background: #0d0d0d;
    color: #ffffff;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input {
    height: 62px;
}

.form-group textarea {
    min-height: 180px;
    padding: 18px 22px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.15);
}

.submit-btn {
    padding: 20px 50px;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    height: 65px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.message-container {
    margin-top: 20px;
    padding: 18px 24px;
    border-radius: 12px;
    display: none;
    font-weight: 500;
    font-size: 16px;
    animation: slideDown 0.3s ease;
    text-align: center;
}

.message-container.success {
    display: block;
    background: #1a3a1a;
    color: #4caf50;
    border: 1px solid #2a5a2a;
}

.message-container.error {
    display: block;
    background: #3a1a1a;
    color: #ef5350;
    border: 1px solid #5a2a2a;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #ffffff;
    color: #333;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-top: 1px solid #e8e8e8;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b00000, #ff3b3b, #b00000);
    background-size: 200% 100%;
    animation: footerGradient 5s linear infinite;
}

@keyframes footerGradient {
    from {
        background-position: 0%;
    }
    to {
        background-position: 200%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-column {
    display: flex;
    flex-direction: column;
    transition: .35s ease;
}

.footer-column:hover {
    transform: translateY(-8px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
}

.footer-logo h3 {
    font-size: 30px;
    color: #b00000;
    margin: 0;
    font-weight: 700;
}

.footer-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    color: #222;
    font-weight: 700;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    border-radius: 30px;
    background: linear-gradient(90deg, #b00000, #ff3b3b);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact i {
    color: #b00000;
    font-size: 18px;
    width: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact span {
    color: #555;
    line-height: 1.6;
}

.footer-contact .hours-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact .hours-detail .hour-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer-contact .hours-detail .hour-row .day {
    font-weight: 600;
    color: #333;
    min-width: 40px;
}

.footer-contact .hours-detail .hour-row .time {
    color: #555;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: .3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: #b00000;
    padding-left: 8px;
}

.footer-newsletter-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: #f8f8f8;
    color: #333;
    outline: none;
    font-size: 14px;
    min-width: 0;
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    border-color: #b00000;
    box-shadow: 0 0 0 3px rgba(176, 0, 0, 0.1);
}

.footer-newsletter-form input::placeholder {
    color: #999;
}

.footer-newsletter-form button {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #b00000, #ff3b3b);
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(176, 0, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom strong {
    color: #b00000;
    font-weight: 700;
}

/* ===========================
   ANIMATIONS
=========================== */
.animate,
.stagger {
    opacity: 0;
    transform: translateY(30px);
}

.animate.show {
    animation: fadeUp .8s ease forwards;
}

.stagger.show {
    animation: fadeUp .8s ease forwards;
}
.stagger.show:nth-child(1) {
    animation-delay: .2s;
}
.stagger.show:nth-child(2) {
    animation-delay: .4s;
}
.stagger.show:nth-child(3) {
    animation-delay: .6s;
}
.stagger.show:nth-child(4) {
    animation-delay: .8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   SELECTION & PRINT
=========================== */
::selection {
    background: #ff3b3b;
    color: white;
}

@media print {
    header {
        position: static;
        background: white;
        border: 1px solid #ddd;
        top: 0;
        margin: 0;
        border-radius: 0;
        width: 100%;
    }
    .hero {
        height: auto;
        min-height: 300px;
        background-attachment: scroll !important;
        margin-top: 0;
    }
    .hero-overlay {
        display: none;
    }
    .hero h1 {
        color: #222;
    }
    .hero p {
        color: #555;
    }
    .footer {
        background: #f8f9fb;
        color: #222;
    }
    .footer-title::after {
        background: #b00000;
    }
    .footer-contact i {
        color: #b00000;
    }
    .footer-bottom strong {
        color: #b00000;
    }
    .btn-primary,
    .btn-secondary,
    .submit-btn {
        border: 1px solid #ddd;
        background: #f8f9fb;
        color: #222;
    }
}

/* ===========================
   RESPONSIVE + HAMBURGER CLEAN VERSION
   Replaces the overlapping mobile rules with one consistent system.
=========================== */

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #b00000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile-only items hidden on desktop */
.mobile-lang-switcher,
.menu-header-logo {
    display: none !important;
}

.desktop-lang {
    display: flex;
}

.menu-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-logo-img {
    width: 44px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #b00000;
    line-height: 1.2;
}

/* Lock document scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* ===========================
   TABLET / MOBILE NAVIGATION
=========================== */
@media (max-width: 1024px) {
    body {
        padding-top: 0;
    }

    header {
        top: 10px;
        width: calc(100% - 30px);
        padding: 11px 20px;
        border-radius: 28px;
        flex-wrap: nowrap;
    }

    header.scrolled {
        top: 8px;
        width: calc(100% - 24px);
        padding: 9px 18px;
        border-radius: 22px;
    }

    .Logo-Image {
        width: 44px;
        max-height: 44px;
    }

    .logo-text {
        font-size: 19px;
    }

    .logo-link {
        gap: 9px;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .desktop-lang {
        display: none !important;
    }

    /* Slide-in menu */
    .menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 320px !important;
        max-width: 86vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 24px 20px 30px !important;
        margin: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background: rgba(255, 255, 255, 0.99) !important;
        border-left: 1px solid rgba(146, 125, 125, 0.15) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
        z-index: 999 !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        list-style: none !important;
    }

    .menu.open {
        right: 0 !important;
    }

    .menu-header-logo {
        display: flex !important;
        width: 100% !important;
        flex: none !important;
        order: 0 !important;
        padding: 0 0 18px !important;
        margin: 0 0 14px !important;
        border-bottom: 1px solid rgba(176, 0, 0, 0.12) !important;
    }

    .mobile-lang-switcher,
    .mobile-lang-switcher.top-lang {
        display: block !important;
        width: 100% !important;
        flex: none !important;
        order: 1 !important;
        padding: 0 0 18px !important;
        margin: 0 0 14px !important;
        border-top: 0 !important;
        border-bottom: 1px solid rgba(176, 0, 0, 0.12) !important;
    }

    .mobile-lang-switcher .language-switcher {
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
        gap: 10px !important;
    }

    .mobile-lang-switcher .lang-btn {
        flex: 1 1 0 !important;
        max-width: 140px !important;
        justify-content: center !important;
        padding: 9px 14px !important;
        font-size: 13px !important;
        border-radius: 12px !important;
        gap: 7px !important;
    }

    .mobile-lang-switcher .lang-btn img {
        width: 20px !important;
        height: 14px !important;
    }

    .menu > li:not(.menu-header-logo):not(.mobile-lang-switcher) {
        order: 2 !important;
        width: 100% !important;
        flex: none !important;
        display: block !important;
        margin: 0 0 5px !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }

    .menu > li:not(.menu-header-logo):not(.mobile-lang-switcher):last-child {
        border-bottom: 0 !important;
    }

    .menu > li > a {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 13px 14px !important;
        margin: 0 !important;
        border-radius: 10px !important;
        background: transparent !important;
        color: #444 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }

    .menu > li > a::before {
        display: none !important;
    }

    .menu > li > a:hover,
    .menu > li > a:focus-visible {
        background: rgba(176, 0, 0, 0.07) !important;
        color: #b00000 !important;
    }

    .menu > li.dropdown > a i {
        margin-left: auto !important;
        font-size: 12px !important;
        transition: transform 0.3s ease !important;
    }

    .menu > li.dropdown.open > a i {
        transform: rotate(180deg) !important;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 8px 8px !important;
        padding: 0 !important;
        background: #f8f9fb !important;
        border: 0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        display: block !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
    }

    .dropdown-menu::before {
        display: none !important;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        padding: 6px 0 !important;
    }

    .dropdown-menu a {
        display: block !important;
        padding: 10px 16px 10px 28px !important;
        margin: 0 4px !important;
        border: 0 !important;
        border-radius: 8px !important;
        background: transparent !important;
        color: #555 !important;
        font-size: 14px !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
        padding-left: 32px !important;
        background: rgba(176, 0, 0, 0.07) !important;
        color: #b00000 !important;
    }

    /* Hero */
    .hero {
        min-height: 600px;
        height: 100vh;
        height: 100svh;
        margin-top: 0;
        background-attachment: scroll;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 650px;
        padding: 20px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        max-width: 560px;
        font-size: 16px;
    }

    /* About */
    .vm-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Services */
    .services-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    /* Projects */
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    /* Forms */
    .career-form,
    .contact-form {
        padding: 40px 34px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    header {
        top: 8px;
        width: calc(100% - 16px);
        padding: 9px 14px;
        border-radius: 20px;
    }

    header.scrolled {
        top: 6px;
        width: calc(100% - 12px);
        padding: 8px 12px;
        border-radius: 18px;
    }

    .Logo-Image {
        width: 38px;
        max-height: 38px;
    }

    .logo-text {
        font-size: 17px;
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu {
        width: 300px !important;
        max-width: 88vw !important;
        padding: 22px 18px 26px !important;
    }

    .menu-logo-img {
        width: 40px !important;
    }

    .menu-logo-text {
        font-size: 19px !important;
    }

    /* Hero */
    .hero {
        min-height: 560px;
        height: 100vh;
        height: 100svh;
        background-position: center center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 95px 24px 45px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.1;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 290px;
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 13px 20px;
        text-align: center;
        font-size: 14px;
    }

    /* Section spacing */
    .AboutUs,
    .services-section,
    .project-section,
    .career-section,
    .contact-section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 14px;
    }

    .about-description p {
        font-size: 15px;
        line-height: 1.8;
    }

    .vm-card {
        padding: 28px 22px;
    }

    .vm-icon {
        width: 72px;
        height: 72px;
    }

    .vm-icon i {
        font-size: 32px;
    }

    .vm-card h3 {
        font-size: 25px;
    }

    .vm-card p,
    .vm-card li {
        font-size: 15px;
    }

    /* Services become one column on phones */
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .service-category {
        padding: 26px 20px 30px;
    }

    .service-header {
        gap: 14px;
    }

    .service-header h3 {
        font-size: 20px;
    }

    .service-icon-large {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 23px;
    }

    .service-list li {
        font-size: 14px;
    }

    /* Projects become one column on phones */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card {
        padding: 20px;
    }

    .project-filters {
        gap: 8px;
        margin-bottom: 32px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .career-wrapper,
    .contact-wrapper {
        margin-top: 32px;
    }

    .career-form,
    .contact-form {
        padding: 25px 18px;
        gap: 20px;
    }

    .career-form .form-group input,
    .career-form .form-group textarea,
    .form-group input,
    .form-group textarea {
        width: 100%;
        font-size: 16px;
        padding: 14px 16px;
    }

    .career-form .form-group input,
    .form-group input {
        height: 52px;
    }

    .file-drop-zone {
        padding: 30px 16px;
    }

    .submit-btn {
        width: 100%;
        max-width: 100%;
        height: 54px;
        padding: 14px 20px;
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-wrap: nowrap;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    header {
        top: 6px;
        width: calc(100% - 12px);
        padding: 8px 12px;
        border-radius: 16px;
    }

    .Logo-Image {
        width: 34px;
        max-height: 34px;
    }

    .logo-text {
        font-size: 15px;
    }

    .hamburger {
        width: 24px;
        height: 20px;
    }

    .hamburger-line {
        height: 2px;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu {
        width: min(100%, 340px) !important;
        max-width: 100% !important;
        padding: 20px 16px 24px !important;
    }

    .menu > li > a {
        padding: 13px 12px !important;
        font-size: 15px !important;
    }

    .menu-logo-img {
        width: 36px !important;
    }

    .menu-logo-text {
        font-size: 18px !important;
    }

    .mobile-lang-switcher .lang-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 90px 20px 38px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .AboutUs,
    .services-section,
    .project-section,
    .career-section,
    .contact-section {
        padding: 58px 0;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .section-title p {
        font-size: 13px;
    }

    .vm-card {
        padding: 24px 18px;
    }

    .service-category {
        padding: 24px 18px 27px;
    }

    .project-card {
        padding: 18px;
        flex-direction: column;
        gap: 14px;
    }

    .career-form,
    .contact-form {
        padding: 20px 15px;
    }

    .footer-logo h3 {
        font-size: 24px;
    }

    .footer-logo-img {
        width: 50px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-form button {
        width: 100%;
        height: 48px;
        border-radius: 50px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .menu {
        width: 100% !important;
    }
}

/* ===========================
   WHATSAPP FLOATING BUTTON - SIMPLE
=========================== */
.whatsapp-float-simple {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float-simple:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    background: #20b85a;
}

.whatsapp-float-simple:active {
    transform: scale(0.95);
}

.whatsapp-float-simple::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0;
    z-index: -1;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.whatsapp-float-simple::after {
    content: '💬';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    animation: whatsappBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-simple {
        width: 55px;
        height: 55px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-simple {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float-simple::before {
        display: none;
    }
}

/* =================================
   DROPDOWN ARROW - MOBILE
================================= */

@media (max-width: 1024px) {

    .menu > li.dropdown > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .menu > li.dropdown > a::after {
        content: "\f078" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        display: inline-block !important;
        font-size: 12px;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    /* Saat dropdown dibuka */
    .menu > li.dropdown.open > a::after {
        transform: rotate(180deg);
    }

}

/* ===========================
   PERFORMANCE OPTIMIZATIONS
   Keeps the same visual language while reducing initial rendering work.
=========================== */

/* Avoid permanently repainting decorative UI when it is not being interacted with. */
.lang-btn.active,
.whatsapp-float-simple::before,
.whatsapp-float-simple::after {
    animation-play-state: paused;
}

.lang-btn.active:hover,
.whatsapp-float-simple:hover::before,
.whatsapp-float-simple:hover::after {
    animation-play-state: running;
}

/* Reduce expensive background compositing on the hero. */
.hero {
    background-attachment: scroll !important;
}

/* Accessibility + strong performance win for users requesting less motion. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto !important; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ===== PERFORMANCE V2 ===== */
/* Disable costly continuous decorative animation by default. */
.lang-btn.active,
.whatsapp-float-simple::before,
.whatsapp-float-simple::after {
    animation: none !important;
}

/* Reduce compositing work on small screens where Lighthouse mobile is most sensitive. */
@media (max-width: 768px) {
    header,
    .dropdown-menu,
    .btn-secondary {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
