/* Contact Us Hero Section */
.contact-hero-section {
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-form-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-info-panel {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    padding: 40px;
    border-bottom: none;
}

@media (max-width: 992px) {
    .contact-info-panel {
        border-bottom: 1px solid var(--border-color);
    }
}

.contact-info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-form-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-info-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
    gap: 45px 35px;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: calc(50% - 17.5px);
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-info-item:nth-child(3),
.contact-info-item:nth-child(4) {
    margin-top: 0;
}

.contact-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.contact-icon-square {
    border-radius: 10px;
}

.contact-icon-circle i {
    font-size: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    white-space: nowrap;
}

.contact-info-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    white-space: nowrap;
}

.contact-divider {
    height: 2px;
    background: #fff;
    border: none;
    margin: 28px 0 18px 0;
    width: 100%;
}

.social-media-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.social-media-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    height: auto;
}

.social-media-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    height: 45px;
}

.social-media-icon-link {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
}

/* X (Twitter) - hanya outline, tanpa background */
.social-media-icon-link[aria-label="Twitter/X"] {
    background: transparent !important;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.social-media-icon-link[aria-label="Twitter/X"] i {
    color: var(--white) !important;
    font-size: 26px;
    font-weight: 400;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "bootstrap-icons" !important;
}

/* Discord - hanya outline, tanpa background */
.social-media-icon-link[aria-label="Discord"] {
    background: transparent !important;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
}

.social-media-icon-link[aria-label="Discord"] i {
    color: var(--white) !important;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* TikTok - white rounded square background dengan icon sebagai cutout (dark) */
.social-media-icon-link[aria-label="TikTok"] {
    background: var(--white);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
}

.social-media-icon-link[aria-label="TikTok"] i {
    color: #00134d;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* Pinterest - white circular background dengan icon sebagai cutout (dark) */
.social-media-icon-link[aria-label="Pinterest"] {
    background: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
}

.social-media-icon-link[aria-label="Pinterest"] i {
    color: #00134d;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.social-media-icon-link:hover {
    transform: scale(1.1);
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    display: flex;
    align-items: flex-start;
}

.contact-form-content {
    height: 100%;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.contact-form .row {
    margin: 0;
    margin-bottom: 20px;
}

.contact-form .row > div {
    padding-left: 0;
    padding-right: 12px;
}

.contact-form .row > div:last-child {
    padding-right: 0;
    padding-left: 12px;
}

@media (max-width: 768px) {
    .contact-form .row > div {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-form .row > div:last-child {
        padding-left: 0;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

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

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-control {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
    color: var(--white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.btn-submit {
    padding: 12px 32px;
    background: rgba(60, 60, 60, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
    align-self: flex-start;
    width: auto;
}

.btn-submit:hover {
    background: rgba(70, 70, 70, 0.95);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Need Help Right Now Section */
.need-help-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: #00134d;
    background-image: url("../img/backgrounds/94.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.need-help-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/foto/94.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.need-help-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.need-help-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
