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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: #ffffff;
    color: #1E262E;
}

.text-red {
    color: #ed1b2f;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff3f4;
    color: #ed1b2f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E262E;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #687279;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.main-header {
    background-color: #ed1b2f;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-wa-header:hover {
    background-color: #ffffff;
    color: #ed1b2f;
}

.btn-search {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: transform 0.2s ease;
}

.btn-search:hover {
    transform: scale(1.1);
}

.btn-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 15, 25, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-panel {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: #fff;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.search-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.search-overlay-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-overlay-form {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
    border-bottom: 2px solid #ED1B2F;
}

.search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    color: #1E262E;
    background: transparent;
    caret-color: #ED1B2F;
}

.search-overlay-input::placeholder {
    color: #c0c8d0;
    font-weight: 400;
}

.search-overlay-close {
    flex-shrink: 0;
    background: #f0f2f4;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-overlay-close:hover {
    background: #ED1B2F;
}

.search-overlay-close:hover svg {
    stroke: #fff;
}

.search-overlay-close svg {
    transition: stroke 0.2s;
}

.search-overlay-results {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}

.search-overlay-results::-webkit-scrollbar { width: 4px; }
.search-overlay-results::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f3f5;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
    transition: background 0.15s;
}

.search-result-item:last-child { border-bottom: none; }

.search-result-item:hover {
    background: #fdf2f3;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0 -8px;
}

.search-result-item:hover .search-result-name { color: #ED1B2F; }

.search-result-thumb {
    width: 60px;
    height: 44px;
    background: #f5f6f8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.search-result-info { flex: 1; min-width: 0; }

.search-result-name {
    font-size: 14px;
    font-weight: 600;
    color: #1E262E;
    transition: color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.search-result-price { font-size: 12px; font-weight: 600; color: #ED1B2F; }
.search-result-dot { width: 3px; height: 3px; background: #c8cdd2; border-radius: 50%; flex-shrink: 0; }
.search-result-category { font-size: 11px; color: #9aa3ac; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

.search-result-arrow {
    flex-shrink: 0;
    color: #c8cdd2;
    display: flex;
    align-items: center;
    transition: color 0.15s;
}

.search-result-item:hover .search-result-arrow { color: #ED1B2F; }

.search-overlay-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 0;
    text-align: center;
}

.search-overlay-empty-icon { font-size: 28px; opacity: 0.25; }
.search-overlay-empty p { font-size: 13px; color: #9aa3ac; line-height: 1.6; }
.search-overlay-empty strong { color: #1E262E; }

.search-overlay-footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 8px 20px;
    font-size: 11px;
    color: #b8bfc7;
    border-top: 1px solid #f0f1f3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(237, 27, 47, 0.05);
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    background: rgba(237, 27, 47, 0.04);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff3f4;
    color: #ed1b2f;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(237, 27, 47, 0.15);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed1b2f;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: #1E262E;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #687279;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.hero-btn-primary {
    background-color: #ed1b2f;
    color: #ffffff;
}

.hero-btn-primary:hover {
    background-color: #c81525;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 27, 47, 0.3);
}

.hero-btn-secondary {
    background-color: transparent;
    color: #1E262E;
    border: 2px solid #1E262E;
}

.hero-btn-secondary:hover {
    background-color: #1E262E;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #1E262E;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: #9aa3ac;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-image-badge > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-image-badge strong {
    font-size: 13px;
    font-weight: 700;
    color: #1E262E;
}

.hero-image-badge span {
    font-size: 11px;
    color: #9aa3ac;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9aa3ac;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid #ddd;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-dot {
    width: 4px;
    height: 8px;
    background-color: #ed1b2f;
    border-radius: 2px;
    animation: scroll-anim 1.5s infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.main-banner-section {
    width: 100%;
    padding: 40px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active { display: block; }

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #1E262E;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.banner-arrow:hover {
    background: #ed1b2f;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    background: #DDDDDD;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    width: 32px;
    background: #ed1b2f;
}

.layanan-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

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

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.layanan-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.layanan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.layanan-card-featured {
    background: linear-gradient(135deg, #ed1b2f 0%, #c81525 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(237, 27, 47, 0.3);
}

.layanan-card-featured .layanan-title { color: #ffffff; }
.layanan-card-featured .layanan-desc { color: rgba(255, 255, 255, 0.85); }

.layanan-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.layanan-title {
    font-size: 17px;
    font-weight: 700;
    color: #1E262E;
    margin-bottom: 12px;
}

.layanan-desc {
    font-size: 14px;
    color: #687279;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.layanan-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ed1b2f;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.layanan-link:hover { gap: 10px; }

.layanan-link-white { color: rgba(255, 255, 255, 0.9); }
.layanan-link-white:hover { color: #ffffff; }

.search-section {
    width: 100%;
    padding: 48px 0 60px 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.search-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E262E;
    text-align: center;
}

.search-form {
    width: 100%;
    display: flex;
    align-items: center;
    border: 2px solid #DDDDDD;
    border-radius: 50px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s;
}

.search-form:focus-within { border-color: #ed1b2f; }

.search-input {
    flex: 1;
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    color: #1E262E;
    outline: none;
    font-family: inherit;
    background: transparent;
}

.search-input::placeholder { color: #AAAAAA; }

.search-submit {
    background-color: #ed1b2f;
    border: none;
    width: 64px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0 50px 50px 0;
}

.search-submit:hover { background-color: #c81525; }

.search-no-result {
    margin-top: 12px;
    font-size: 14px;
    color: #ED1B2F;
    text-align: center;
}

.catalog-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.catalog-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-title {
    font-size: 32px;
    font-weight: 700;
    color: #1E262E;
    margin-bottom: 40px;
    text-align: center;
}

.catalog-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    background-color: #f1f1f1;
    padding: 6px;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #999999;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active {
    background-color: #ed1b2f;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(237, 27, 47, 0.3);
}

.tab-btn:hover:not(.active) {
    color: #1E262E;
    background-color: #e0e0e0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}

.catalog-disclaimer {
    margin-top: 32px;
    font-size: 13px;
    color: #9aa3ac;
    text-align: center;
    line-height: 1.5;
    font-style: italic;
}

.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ed1b2f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
    letter-spacing: 0.05em;
}

.product-image-container {
    background-color: #f8f9fa;
    padding: 20px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.product-name {
    font-size: 17px;
    font-weight: 700;
    color: #1E262E;
    margin-bottom: 8px;
}

.product-price-label {
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: #ed1b2f;
    margin-bottom: 16px;
}

.product-btn {
    background-color: #1E262E;
    color: #ffffff;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: auto;
    font-family: inherit;
}

.product-btn:hover { background-color: #ed1b2f; }

.contact-section {
    width: 100%;
    background-color: #1E262E;
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-left {
    color: #ffffff;
}

.contact-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-heading span {
    color: #ed1b2f;
}

.contact-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(237, 27, 47, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ed1b2f;
}

.contact-info-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item strong {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.contact-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-box-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E262E;
    margin-bottom: 32px;
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #9aa3ac;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #eaeaea;
    padding: 12px 0;
    font-size: 15px;
    color: #1E262E;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #ed1b2f;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #cccccc;
    font-size: 14px;
}

.btn-submit-contact {
    background-color: #ed1b2f;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
    display: inline-block;
}

.btn-submit-contact:hover {
    background-color: #c81525;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 27, 47, 0.3);
}

.video-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-title {
    font-size: 32px;
    font-weight: 700;
    color: #1E262E;
    margin-bottom: 40px;
    text-align: center;
}

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

.video-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #000;
    aspect-ratio: 16 / 9;
}

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

.main-footer {
    background-color: #1E262E;
    width: 100%;
}

.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav-list a:hover { color: #ed1b2f; }

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    fill: none;
    stroke: #ed1b2f;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.social-icons { display: flex; gap: 10px; }

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: #ed1b2f;
    transform: translateY(-3px);
}

.social-icons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.slider-section {
    display: flex;
    justify-content: center;
}

.slider-wrapper {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #1E262E;
    transition: background 0.3s;
    z-index: 2;
}

.slider-arrow:hover { background: #ed1b2f; color: #fff; }
.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }

.qr-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.qr-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-dots .dot.active {
    width: 20px;
    background: #ed1b2f;
}

.qr-slide {
    display: none;
    width: 100%;
}

.qr-slide.active { display: block; }

.qr-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.subscribe-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: center;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.subscribe-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0;
    font-size: 13px;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.subscribe-input::placeholder { color: rgba(255, 255, 255, 0.35); }

.subscribe-btn {
    background-color: #ED1B2F;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
    align-self: flex-start;
}

.subscribe-btn:hover { background-color: #c81525; }

.footer-bottom {
    text-align: center;
    padding: 24px 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.floating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    text-decoration: none;
    color: #4d5358;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    width: 85px;
    text-align: center;
}

.floating-item:last-child { border-bottom: none; }

.floating-item:hover {
    background-color: #fff3f4;
    color: #ed1b2f;
}

.floating-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.floating-item span {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(6px);
}

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

.modal-content {
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: #f1f1f1;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #687279;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: #ed1b2f;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: row;
    padding: 40px;
    gap: 40px;
}

.modal-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
}

.modal-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.specs-list li span { color: #9aa3ac; }
.specs-list li strong { color: #1E262E; text-align: right; max-width: 60%; }

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content { max-width: 100%; }

    .hero-actions { justify-content: center; }

    .hero-stats { justify-content: center; }

    .hero-image { justify-content: center; margin-top: 40px; }

    .hero-scroll { display: none; }

    .layanan-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-heading { font-size: 34px; }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #c81525;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .main-nav.open {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .main-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 16px;
    }

    .btn-hamburger { display: flex; }
    .btn-wa-header { display: none; }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-section { padding: 60px 0 60px; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 15px; }

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

    .layanan-grid { grid-template-columns: 1fr; gap: 16px; }

    .search-title { font-size: 22px; }

    .catalog-tabs {
        border-radius: 20px;
        padding: 6px;
        gap: 4px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .contact-heading { font-size: 28px; }

    .contact-box {
        padding: 32px 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand { grid-column: auto; }

    .modal-body {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .modal-image { padding: 10px; }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

    body { padding-bottom: 75px; }

    .floating-sidebar {
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        padding: 8px 5px;
    }

    .floating-item {
        width: auto;
        flex: 1;
        padding: 4px;
        border-bottom: none;
    }

    .floating-item img {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }

    .floating-item span { font-size: 9px; }
}