/* === Base === */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* === Header / Navbar === */
header {
    background: #1e1e1e;
    color: white;
    padding: 0;
}

.main-header {
    background-color: #1a1a1a;
    padding: 12px 40px;
    border-bottom: 1px solid #333;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    filter: brightness(1.2);
    height: 35px;
    width: auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover {
    color: white;
}

.nav-links li a.active {
    color: white;
    font-weight: 400;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-button {
    background: linear-gradient(to bottom, #feca07, #ffae2e);
    padding: 10px 20px;
    border-radius: 5px;
    color: black;
    font-weight: 300;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(254, 202, 7, 0.3);
    transform: translateY(0);
}

.contact-button:hover {
    background: linear-gradient(to bottom, #ffae2e, #feca07);
    box-shadow: 0 4px 12px rgba(254, 202, 7, 0.4);
    transform: translateY(-2px);
}

.contact-button::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.516'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.search-icon {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    color: #feca07;
    transform: scale(1.1);
}

.search-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.language-btn:hover {
    color: #feca07;
}

.language-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.language-text {
    font-size: 14px;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    transition: transform 0.3s;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s;
    border-bottom: 1px solid #444;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #333;
    color: white;
}

.language-option.active {
    background: #444;
    color: #feca07;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: #feca07;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    margin: auto;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid #333;
    z-index: 1000;
    padding: 80px 0 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 0 30px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-links li {
    margin-bottom: 0;
    border-bottom: 1px solid #333;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links li a {
    display: block;
    padding: 15px 0;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: #feca07;
    padding-left: 10px;
}

.mobile-nav-links li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #feca07;
    transition: width 0.3s ease;
}

.mobile-nav-links li a:hover::before,
.mobile-nav-links li a.active::before {
    width: 4px;
}

.mobile-actions {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.mobile-contact-button {
    background: linear-gradient(to bottom, #feca07, #ffae2e);
    padding: 12px 20px;
    border-radius: 5px;
    color: black;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-contact-button:hover {
    background: linear-gradient(to bottom, #ffae2e, #feca07);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 202, 7, 0.4);
}

.mobile-search {
    background: none;
    border: 2px solid #333;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.mobile-search:hover {
    border-color: #feca07;
    color: #feca07;
}

.mobile-language-dropdown {
    width: 100%;
}

.mobile-language-btn {
    background: none;
    border: 2px solid #333;
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-language-btn:hover {
    border-color: #feca07;
    color: #feca07;
}

.mobile-language-btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-language-dropdown-menu {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-language-dropdown.active .mobile-language-dropdown-menu {
    max-height: 200px;
    opacity: 1;
}

.mobile-language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header {
        padding: 16px 30px; /* Increased padding for better height */
    }
}

@media (max-width: 991px) {
    .main-header {
        padding: 16px 25px; /* Increased padding for better height */
    }
}

/* Tablet Styles - Logo tetap di kiri */
@media (max-width: 768px) {
    .main-header {
        padding: 16px 20px; /* Increased padding for better height */
    }
    
    .navbar {
        justify-content: space-between; /* Changed from center to space-between */
        position: relative;
        min-height: 50px; /* Ensure minimum height */
    }

    .logo {
        /* Removed absolute positioning - logo stays on left */
        position: static;
        transform: none;
        z-index: 10;
    }

    .logo img {
        height: 34px; /* Slightly larger for better proportion */
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        /* Removed absolute positioning - nav-right stays on right */
        position: static;
        gap: 12px;
        align-items: center;
    }

    .contact-button,
    .search-icon {
        display: none;
    }

    .language-dropdown {
        display: flex;
        order: 1; /* Language dropdown first */
    }

    .language-btn {
        padding: 8px;
    }

    .language-flag {
        width: 20px;
        height: 15px;
    }

    .language-text {
        font-size: 13px;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2; /* Hamburger menu second (rightmost) */
        margin-left: 0;
    }
}

/* Mobile Styles - Logo tetap di kiri */
@media (max-width: 480px) {
    .main-header {
        padding: 14px 15px; /* Increased padding for better height */
    }

    .navbar {
        min-height: 48px; /* Ensure minimum height on mobile */
        justify-content: space-between; /* Ensure space-between is maintained */
    }

    .logo img {
        height: 30px;
    }

    .nav-right {
        gap: 10px;
    }

    .language-btn {
        padding: 6px;
    }

    .language-flag {
        width: 18px;
        height: 13px;
    }

    .language-text {
        font-size: 12px;
    }

    .mobile-menu {
        width: 260px;
        padding: 70px 0 15px;
    }

    .mobile-menu-content {
        padding: 0 20px;
    }

    .mobile-nav-links li a {
        font-size: 15px;
        padding: 12px 0;
    }

    .mobile-contact-button {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .main-header {
        padding: 12px 12px; /* Increased padding for better height */
    }

    .navbar {
        min-height: 44px; /* Ensure minimum height on small mobile */
        justify-content: space-between; /* Ensure space-between is maintained */
    }

    .logo img {
        height: 28px;
    }

    .nav-right {
        gap: 8px;
    }

    .language-btn {
        padding: 4px;
    }

    .language-flag {
        width: 16px;
        height: 12px;
    }

    .language-text {
        font-size: 11px;
    }

    .mobile-menu {
        width: 240px;
        padding: 60px 0 15px;
    }

    .mobile-menu-content {
        padding: 0 15px;
    }
}

/* Desktop hover effects */
@media (min-width: 769px) {
    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #feca07;
        transition: width 0.3s ease;
    }

    .nav-links li a:hover::after,
    .nav-links li a.active::after {
        width: 100%;
    }
}

/* === Hero Banner === */
.hero-banner {
    position: relative;
    height: 90vh;
    background-image: url('../images/hero-house.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: white;
    padding-bottom: 60px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
                rgba(17, 17, 17, 1) 5%, 
                rgba(17, 17, 17, 0.95) 10%, 
                rgba(17, 17, 17, 0.85) 20%, 
                rgba(17, 17, 17, 0.6) 40%, 
                rgba(17, 17, 17, 0.3) 60%, 
                rgba(0, 0, 0, 0.1) 80%);
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.hero-button {
    background-color: white;
    color: #111;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    font-family: 'Montserrat', sans-serif;
    margin-left: 20px;
    white-space: nowrap;
}

.hero-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        max-width: 100%;
        margin-bottom: 10px; /* Reduced from 20px */
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 3px; /* Reduced space after heading */
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 10px; /* Reduced from 15px */
    }

    .hero-button {
        margin-left: 0;
        padding: 12px 24px;
    }

    .hero-banner {
        height: 75vh;
    }
}

@media (max-width: 576px) {
    .hero-overlay {
        padding: 20px;
    }
    
    .hero-text {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 2px; /* Reduced space after heading */
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 8px; /* Reduced space after paragraph */
    }

    .hero-text-content {
        margin-bottom: 8px; /* Even smaller gap for extra small screens */
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-banner {
        height: 60vh;
        padding-bottom: 40px;
    }
}

/* Features Section Styles */
.features-section {
    background-color: #111;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern with waves */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('../images/wave-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Content area styles - Left side */
.features-content {
    flex: 0 0 45%;
    max-width: 45%;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}

.features-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.85;
}

/* Button styles */
.features-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .features-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}
.btn {
    padding: 15px 25px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    min-width: 200px; /* Wider buttons */
}

.btn-primary {
    background-color: 
#ffffff;
    color: #111;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: 
#f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid 
#ffc107; /* Gold/yellow border - thicker */
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 193, 7, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 193, 7, 0.3);
}

/* Right side - Stats */
.features-stats {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.stat-item {
    margin-bottom: 40px;
}

.stat-number {
    font-size: 8rem;
    font-weight: 700;
    color: 
#ffc107; /* Gold/yellow color */
    line-height: 1;
    display: block;
    animation: fadeInNumber 1s ease-out;
}

.stat-label {
    font-size: 2rem;
    opacity: 0.95;
    display: block;
    margin-top: 10px;
    animation: fadeInLabel 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Animation keyframes */
@keyframes fadeInNumber {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLabel {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
    }

    .features-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .features-stats {
        flex: 0 0 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-content h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 6rem;
    }

    .stat-label {
        font-size: 1.7rem;
    }

    .btn {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .features-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 5rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
  background-color: #111;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Background wave pattern */
.gallery-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background-image: url('../images/wave-pattern.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.1;
  z-index: 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Featured Image Section */
.featured-image {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-image:hover img {
  transform: scale(1.03);
}

/* Video Section */
.video-section {
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.video-item {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-item:hover img {
  transform: scale(1.05);
}

/* Video Play Button Overlay */
.video-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 2;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

.video-item:hover::before {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
  z-index: 3;
}

/* Gallery Grid Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* "Selengkapnya" Button */
.gallery-section .view-more-btn {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 12px 0;
  background: linear-gradient(to bottom, #feca07, #ffae2e);
  color: #111;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(254, 202, 7, 0.3);
}

.gallery-section .view-more-btn:hover {
  background: linear-gradient(to bottom, #ffae2e, #feca07);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .featured-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-section h2 {
    font-size: 2rem;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .featured-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 0;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .featured-image {
    height: 180px;
    margin-bottom: 15px;
  }
}

/* Testimonial Section Styles */
.testimonial-section {
    background-color: #111;
    color: white;
    padding: 80px 0;
    position: relative;
    background-image: url('../images/wave-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Top row with 2 large highlighted videos */
.testimonial-top-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Bottom rows with 4 videos each */
.testimonial-bottom-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Large video styles (top row highlighted) */
.testimonial-video.large {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Medium video styles (bottom rows) */
.testimonial-video.medium {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 20px;
}

.play-button:hover {
    background-color: rgba(214, 162, 76, 0.8);
}

.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
    color: #d6a24c; /* Gold star color */
}

.rating i {
    font-size: 14px;
}

.testimonial-info h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-top-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .testimonial-row {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section Styles */
.benefits-section {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

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

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

/* Benefits Grid Layout */
.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-item {
    flex: 0 0 calc(20% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon img {
    width: 100%;
    height: auto;
    max-height: 70px;
}

.benefit-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

/* Booking Button */
.booking-button-container {
    margin-top: 30px;
}

.booking-button {
    background-color: #d6a24c; /* Gold background - matched with site theme */
    color: white;
    padding: 12px 40px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.booking-button:hover {
    background-color: #c69500;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 992px) {
    .benefit-item {
        flex: 0 0 calc(33.33% - 40px);
    }
}

@media (max-width: 768px) {
    .benefits-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 20px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        flex: 0 0 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        gap: 40px;
    }
}

/* Review Desain Section Styles */
.review-desain-section {
    background-color: #111;
    color: white;
    padding: 80px 0;
    position: relative;
    background-image: url('../images/wave-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

.review-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.review-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
}

.play-button:hover {
    background-color: rgba(214, 162, 76, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-video {
        margin-bottom: 15px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 18px;
    }
}

/* Where to Find Us */
.location-section {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.location-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.location-info {
    flex: 0 0 40%;
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(214, 162, 76, 0.05) 0%, rgba(214, 162, 76, 0.02) 100%);
    border-radius: 20px 0 0 20px;
}

.location-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.location-icon {
    color: #d6a24c;
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.office-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #d6a24c;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.location-address {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.location-map-link {
    color: #d6a24c;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #d6a24c;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.location-map-link:hover {
    background-color: #d6a24c;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 162, 76, 0.3);
}

.location-map-link i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.location-map {
    flex: 0 0 60%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-map:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(214, 162, 76, 0.3);
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d6a24c, #f4d06f);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(214, 162, 76, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(214, 162, 76, 0.5);
}

.play-button i {
    color: #1a1a1a;
    font-size: 24px;
    margin-left: 3px;
}

.company-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
}

.company-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.fallback-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Video Content */
.location-video {
    flex: 0 0 60%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background: #000;
    display: none;
}

.location-video.active {
    display: block;
}

.location-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-map.active {
    display: block;
}

.location-map {
    display: none;
}

/* Navigation indicators */
.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-indicator {
    width: 60px;
    height: 4px;
    background-color: #333;
    margin: 0 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-indicator.active {
    background-color: #d6a24c;
    width: 80px;
    box-shadow: 0 0 10px rgba(214, 162, 76, 0.5);
}

.slider-indicator:hover {
    background-color: #666;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .location-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .location-info, .location-map, .location-video {
        flex: 0 0 100%;
    }
    
    .location-info {
        padding: 40px 30px;
        border-radius: 20px 20px 0 0;
    }
    
    .location-map, .location-video {
        height: 350px;
        border-radius: 0 0 20px 20px;
    }
    
    .location-info h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-info {
        padding: 30px 25px;
    }
    
    .location-info h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .location-map, .location-video {
        height: 300px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .company-logo img {
        height: 60px;
    }
    
    .slider-indicator {
        width: 40px;
        margin: 0 5px;
    }
    
    .slider-indicator.active {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .location-container {
        padding: 0 15px;
    }
    
    .location-info {
        padding: 25px 20px;
    }
    
    .location-info h2 {
        font-size: 1.4rem;
    }
    
    .office-label {
        font-size: 0.8rem;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
    
    .location-map-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* White Content Area */
.content-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 1000px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 28px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: white;
    color: #333;
}

.content-column {
    padding: 40px 30px;
    border-right: 1px solid #e9ecef;
}

.content-column:last-child {
    border-right: none;
}

.content-column.description {
    background: #f8f9fa;
}

.content-column p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #000;
    margin: 0;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
}

.description-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #000;
    margin: 0;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    line-height: 1.3;
    color: #000;
    transition: color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.feature-list li:hover {
    color: #333;
}

.feature-list li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-column {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 30px 25px;
    }
    
    .content-column:last-child {
        border-bottom: none;
    }
    
    .video-container {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .content-wrapper {
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button::after {
        border-left: 20px solid white;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        margin-left: 4px;
    }
    
    .content-column {
        padding: 25px 20px;
    }
    
    .feature-list li {
        margin-bottom: 3px;
        font-size: 0.7rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* === 3D Expert Services === */
.services-section {
    padding: 60px 0;
    background: #2a2a2a;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

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

.services-container h1 {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: calc(25% - 12px);
    min-width: 220px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.service-card:hover {
    transform: translateY(-3px);
}

.card-header {
    padding: 20px 15px 15px 15px;
    background-color: #ffffff;
    text-align: center;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.card-price-section {
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.original-price {
    text-decoration: line-through;
    color: #000000;
    font-weight: 500;
}

.discount-text {
    color: #000000;
    font-weight: 500;
}

.card-price {
    font-size: 42px;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Montserrat', sans-serif;
    margin: 0 -10px;
}

.card-price .currency {
    font-size: 22px;
    font-weight: 600;
    color: #FFD700;
    margin-right: 2px;
}

.card-footer {
    padding: 0 15px 15px 15px;
    text-align: center;
    background-color: #ffffff;
}

.select-btn {
    display: block;
     text-decoration: none;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    color: #000000;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.selects-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    color: #000000;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.consult-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.select-btn:hover {
    background-color: #FFD700;
    color: #000000;
}

.consult-btn:hover {
    background-color: #e6c200;
    color: #000000;
}

.consult-text {
    font-size: 10px;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.card-content {
    padding: 0 15px 20px 15px;
    flex-grow: 1;
    background-color: #ffffff;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 3px 0 3px 12px;
  font-size: 11px;
  color: #000;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 8px;
  color: #FFD700;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    padding: 15px 40px;
    background-color: #FFD700;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn:hover {
    background-color: #e6c200;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .service-card {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .service-card {
        width: 100%;
    }
    
    .services-container h1 {
        font-size: 16px;
    }
    
    .services-section {
        padding: 40px 0;
    }
}

/* === FAQ 3D Expert Section with Updated Consultation Button === */
.faq-section {
    padding: 60px 0;
    background-color: #1b1b1b;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-your-wave-pattern.svg');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.07;
    z-index: 1;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.video-container {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #2c2c2c;
}

.video-thumbnail {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 7px;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.section-title {
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    background-color: rgba(255, 189, 0, 0.1);
    border-color: rgba(255, 189, 0, 0.3);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.faq-question {
    color: white;
    font-size: 15px;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before, 
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: white;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transform: rotate(0deg);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.learn-more-container {
    text-align: center;
    margin-top: 40px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #ffbd00;
    color: #1b1b1b;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .faq-container {
        padding: 0 15px;
    }
}

/* === Responsive WhatsApp Consultation Button === */
.consultation-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Much higher z-index */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: calc(100vw - 40px);
    width: auto;
    box-sizing: border-box;
    pointer-events: none; /* Allow clicking through container */
}

.consult-btn {
    display: inline-block;
    background-color: #ffbd00;
    color: #1b1b1b;
    border: none;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    text-align: center;
    box-sizing: border-box;
    pointer-events: auto; /* Enable clicking on button */
    backdrop-filter: blur(10px); /* Add backdrop blur for better visibility */
}

.consult-btn:hover {
    background-color: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ffbd00;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    pointer-events: auto; /* Enable clicking on button */
    backdrop-filter: blur(10px); /* Add backdrop blur for better visibility */
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i,
.whatsapp-btn svg {
    color: white;
    width: 24px;
    height: 24px;
}

/* === Mobile Small (320px - 480px) === */
@media screen and (max-width: 480px) {
    .consultation-container {
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }
    
    .consult-btn {
        font-size: 9px;
        padding: 6px 12px;
        max-width: 90px;
        border-radius: 15px;
        margin-bottom: 6px;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* === Mobile Large (481px - 768px) === */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .consultation-container {
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }
    
    .consult-btn {
        font-size: 10px;
        padding: 7px 14px;
        max-width: 110px;
        border-radius: 18px;
    }
    
    .whatsapp-btn {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 19px;
        height: 19px;
    }
}

/* === Tablet (769px - 1024px) === */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .consultation-container {
        bottom: 20px;
        right: 20px;
        max-width: calc(100vw - 40px);
    }
    
    .consult-btn {
        font-size: 11px;
        padding: 8px 16px;
        max-width: 120px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* === Desktop Small (1025px - 1200px) === */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .consultation-container {
        bottom: 25px;
        right: 25px;
    }
    
    .consult-btn {
        font-size: 12px;
        padding: 9px 18px;
        max-width: 130px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* === Desktop Large (1201px and above) === */
@media screen and (min-width: 1201px) {
    .consultation-container {
        bottom: 30px;
        right: 30px;
    }
    
    .consult-btn {
        font-size: 13px;
        padding: 10px 20px;
        max-width: 140px;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* === Landscape Orientation Adjustments === */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .consultation-container {
        bottom: 8px;
        right: 8px;
    }
    
    .consult-btn {
        font-size: 9px;
        padding: 5px 10px;
        margin-bottom: 6px;
        max-width: 90px;
        border-radius: 12px;
    }
    
    .whatsapp-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* === High DPI/Retina Display Adjustments === */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
    .consult-btn {
        border: 0.5px solid rgba(255, 189, 0, 0.3);
        backdrop-filter: blur(5px);
    }
    
    .whatsapp-btn {
        border: 0.5px solid rgba(255, 189, 0, 0.3);
        backdrop-filter: blur(5px);
    }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
    .consult-btn {
        background-color: #ffbd00;
        color: #1b1b1b;
        box-shadow: 0 2px 8px rgba(255, 189, 0, 0.3);
    }
    
    .consult-btn:hover {
        background-color: #e6a800;
        box-shadow: 0 4px 10px rgba(255, 189, 0, 0.4);
    }
    
    .whatsapp-btn {
        background-color: #ffbd00;
        box-shadow: 0 4px 10px rgba(255, 189, 0, 0.3);
    }
    
    .whatsapp-btn:hover {
        box-shadow: 0 6px 15px rgba(255, 189, 0, 0.4);
    }
}

/* === Accessibility Improvements === */
@media (prefers-reduced-motion: reduce) {
    .consult-btn,
    .whatsapp-btn {
        transition: none;
    }
    
    .consult-btn:hover {
        transform: none;
    }
    
    .whatsapp-btn:hover {
        transform: none;
    }
}

/* === Focus States for Keyboard Navigation === */
.consult-btn:focus,
.whatsapp-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* === Touch Device Optimizations === */
@media (hover: none) and (pointer: coarse) {
    .consult-btn,
    .whatsapp-btn {
        transition: background-color 0.2s ease;
    }
    
    .consult-btn:active {
        background-color: #d4950d;
        transform: scale(0.98);
    }
    
    .whatsapp-btn:active {
        background-color: #d4950d;
        transform: scale(0.95);
    }
}

/* === /* Footer === */
.site-footer {
    background: #1b1b1b;
    color: white;
    padding: 40px 0 20px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.footer-logo {
    flex: 0 0 auto;
    margin-right: 120px;
    margin-left: 100px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
    filter: grayscale(100%) brightness(1.1);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: grayscale(0%) brightness(1);
}

.footer-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
    margin-left: 70px;
}

.quick-links {
    flex: 0 0 auto;
    margin-right: 100px;
}

.quick-links h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.quick-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.quick-links ul li a:hover {
    color: #f8b500;
}

.social-media {
    flex: 0 0 auto;
    margin-left: 85px;
}

.social-media h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.social-icons {
    display: flex;
    margin-bottom: 25px;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #f8b500;
    border-radius: 50%;
    color: #1b1b1b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #ffdd33;
    transform: translateY(-2px);
}

.address {
    margin-top: 0;
}

.address p {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    max-width: 280px;
    margin: 0;
}

.address i {
    margin-right: 10px;
    color: #f8b500;
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Reset standar untuk menghilangkan margin dan padding default */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Memastikan bahwa script atau link di footer tidak menyebabkan space */
.site-footer script, 
.site-footer link {
    display: block;
    height: 0;
}

/* === Responsive Design === */

/* Large Desktop (1400px+) - Enhanced desktop experience */
@media (min-width: 1400px) {
    .footer-container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .footer-logo {
        margin-left: 120px;
        margin-right: 140px;
    }
    
    .footer-content {
        margin-left: 90px;
    }
    
    .social-media {
        margin-left: 100px;
    }
}

/* Desktop (1200px - 1399px) - Standard desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
    .footer-container {
        padding: 0 30px;
    }
}

/* Large Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-logo {
        margin-left: 60px;
        margin-right: 80px;
    }
    
    .footer-content {
        margin-left: 40px;
    }
    
    .quick-links {
        margin-right: 60px;
    }
    
    .social-media {
        margin-left: 60px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 30px;
    }
    
    .footer-logo {
        margin: 0 0 30px 0;
        align-self: center;
    }
    
    .footer-logo img {
        max-width: 180px;
    }
    
    .footer-content {
        width: 100%;
        max-width: 500px;
        margin: 0;
        justify-content: space-around;
        gap: 40px;
    }
    
    .quick-links {
        margin-right: 0;
        flex: 1;
    }
    
    .social-media {
        margin-left: 0;
        flex: 1;
    }
    
    .address p {
        max-width: 100%;
        justify-content: center;
        text-align: left;
    }
}

/* Tablet Portrait and Mobile (up to 767px) */
@media (max-width: 767px) {
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .footer-logo {
        margin: 0 0 25px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo img {
        max-width: 160px;
        width: auto;
        height: auto;
    }
    
    .footer-content {
        width: 100%;
        flex-direction: column;
        max-width: none;
        margin: 0;
        gap: 25px;
    }
    
    .quick-links {
        margin: 0;
        width: 100%;
    }
    
    .quick-links h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .quick-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .quick-links ul li {
        margin-bottom: 8px;
        text-align: center;
    }
    
    .quick-links ul li a {
        font-size: 14px;
        display: block;
        padding: 5px 10px;
    }
    
    .social-media {
        margin: 0;
        width: 100%;
    }
    
    .social-media h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .address {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }
    
    .address p {
        font-size: 13px;
        text-align: center;
        max-width: 100%;
        line-height: 1.6;
        justify-content: center;
        margin: 0 auto;
    }
    
    .address i {
        font-size: 13px;
        margin-right: 8px;
    }
}

/* Mobile Portrait (up to 479px) */
@media (max-width: 479px) {
    .site-footer {
        padding: 25px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo {
        margin: 0 0 20px 0;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .quick-links h3,
    .social-media h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .quick-links ul li {
        margin-bottom: 6px;
    }
    
    .quick-links ul li a {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .social-icons {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .address p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .address i {
        font-size: 12px;
        margin-right: 6px;
    }
}

/* Extra Small Mobile (up to 359px) */
@media (max-width: 359px) {
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .quick-links h3,
    .social-media h3 {
        font-size: 14px;
    }
    
    .quick-links ul li a {
        font-size: 12px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .address p {
        font-size: 11px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
    .site-footer {
        background: #0f0f0f;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .footer-logo img,
    .quick-links ul li a,
    .social-icon {
        transition: none;
    }
    
    .social-icon:hover {
        transform: none;
    }
}

/* === CAREER PAGE STYLES === */

/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Base Career Page Styles */
.career-page * {
    font-family: 'Montserrat', sans-serif;
}

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

/* Hero Section - REDESIGNED SESUAI DESAIN */
.career-hero {
    background: #1a1a1a;
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.career-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Hero Image - Full Width */
.hero-image {
    width: 100%;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Hero Text Content - Below Image */
.hero-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
    padding: 80px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Title & Subtitle (Vertical Layout) */
.hero-text-left {
    flex: 0 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-text-left h1 {
    font-size: 96px;
    font-weight: 200;
    margin: 0 0 16px 0;
    line-height: 0.95;
    color: white;
    letter-spacing: -0.02em;
    text-align: left;
    order: 1;
}

.hero-subtitle {
    font-size: 32px;
    color: white;
    margin: 0;
    font-style: italic;
    font-weight: 200;
    opacity: 0.9;
    text-align: left;
    line-height: 1.2;
    order: 2;
}

/* Right Column - Description */
.hero-text-right {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-weight: 300;
    opacity: 0.9;
    text-align: left;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-content-bottom {
        gap: 100px;
        padding: 70px 30px 90px;
    }
    
    .hero-text-left h1 {
        font-size: 84px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .hero-content-bottom {
        gap: 80px;
        padding: 60px 30px 80px;
    }
    
    .hero-text-left h1 {
        font-size: 72px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content-bottom {
        flex-direction: column;
        gap: 50px;
        padding: 50px 20px 70px;
        text-align: left;
    }
    
    .hero-text-left {
        max-width: none;
        width: 100%;
    }
    
    .hero-text-left h1 {
        font-size: 56px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .hero-text-right {
        max-width: none;
        width: 100%;
        padding-top: 0;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: left;
    }
    
    .hero-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content-bottom {
        padding: 40px 20px 60px;
        gap: 40px;
    }
    
    .hero-text-left h1 {
        font-size: 42px;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .hero-image img {
        height: 280px;
    }
}

/* Filter Section - REDESIGNED */
.career-filter {
    background: #393838;
    padding: 50px 0;
    position: relative;
}

.filter-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #696969;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-item:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.filter-item.active {
    background: #fdb326;
    color: #000000;
}

.filter-item i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Content Section - REDESIGNED */
.career-content {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    color: white;
}

.job-navigation {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.nav-tabs {
    display: flex;
    gap: 60px;
    justify-content: center;
    border-bottom: 2px solid #393838;
    padding-bottom: 0;
    position: relative;
}

.nav-tab {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-tab::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fdb326;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-tab.active {
    color: #fdb326;
    opacity: 1;
}

.nav-tab.active::before {
    width: 100%;
}

.nav-tab:hover:not(.active) {
    opacity: 1;
    transform: translateY(-2px);
}

/* Job Listings - REDESIGNED */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.job-item {
    background: #282828;
    border: 1px solid #393838;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.job-item:hover {
    border-color: #fdb326;
    transform: translateY(-2px);
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-location {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.fresh-graduate {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.tag.program-trainee {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.tag.experienced {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
}

.tag.marketing {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

.tag.technology {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

.tag.hr {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.tag.finance {
    background: linear-gradient(135deg, #28a745, #17a2b8);
    color: white;
}

.tag.operations {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.tag.sales {
    background: linear-gradient(135deg, #e83e8c, #fd7e14);
    color: white;
}

.job-action {
    margin-left: 30px;
}

.btn-detail {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #fdb326;
    color: #000000;
    transform: translateY(-2px);
}

.btn-detail:active {
    transform: translateY(0);
}

/* Pagination - REDESIGNED */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination-arrow {
    background: #393838;
    border: 1px solid #393838;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.pagination-arrow:hover {
    background: #fdb326;
    border-color: #fdb326;
    color: #000000;
    transform: scale(1.1);
}

.pagination-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    background: #393838;
    color: #ffffff;
}

.page-number:hover {
    background: #282828;
    color: #ffffff;
}

.page-number.active {
    background: #fdb326;
    color: #000000;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .filter-tabs {
        justify-content: center;
        gap: 15px;
    }
    
    .filter-item {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .nav-tabs {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .career-content {
        padding: 60px 0;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .filter-item {
        width: 200px;
        justify-content: center;
    }
    
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }
    
    .job-action {
        margin-left: 0;
        width: 100%;
    }
    
    .btn-detail {
        width: 100%;
        justify-content: center;
    }
    
    .nav-tabs {
        gap: 30px;
        justify-content: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .job-title {
        font-size: 1.2rem;
    }
    
    .filter-item {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 180px;
    }
    
    .pagination-arrow,
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .nav-tab {
        font-size: 1rem;
    }
}

/* === Portfolio Page Styles === */

/* Hero Section */
.portfolio-hero {
    background-color: #1b1b1b;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.portfolio-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.portfolio-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Portfolio Filters */
.portfolio-categories {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1b1b1b;
    color: white;
    border-color: #1b1b1b;
}

/* Portfolio Grid */
.portfolio-gallery {
    padding: 50px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 27, 27, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #f8b500;
}

.view-details {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f8b500;
    color: #1b1b1b;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: #fff;
}

/* Call To Action */
.call-to-action {
    background-color: #f8b500;
    color: #1b1b1b;
    text-align: center;
    padding: 60px 0;
}

.call-to-action h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.call-to-action p {
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1b1b1b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero {
        padding: 60px 0;
    }
    
    .portfolio-hero h1 {
        font-size: 28px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
.video-container {
  width: 100%;
  max-width: 800px;      /* Atur lebar maksimal */
  margin: 0 auto 2rem;   /* Center dan jarak bawah */
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;     /* Sedikit sudut membulat */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
