/* Contact Page Styles */

.contact_page_section {
    position: relative;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
    min-height: 100vh;
    padding: 80px 0;
    overflow: hidden;
}

/* Animated Stars Background */
.contact_page_stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.contact_page_stars::before,
.contact_page_stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #F8A922;
    border-radius: 50%;
    box-shadow: 
        100px 100px #fff,
        200px 300px #F8A922,
        300px 150px #fff,
        400px 400px #F8A922,
        500px 250px #fff,
        600px 350px #F8A922,
        700px 100px #fff,
        800px 300px #F8A922,
        900px 200px #fff,
        1000px 400px #F8A922,
        1100px 150px #fff,
        1200px 350px #F8A922,
        150px 450px #fff,
        250px 550px #F8A922,
        350px 200px #fff,
        450px 500px #F8A922,
        550px 300px #fff,
        650px 400px #F8A922,
        750px 150px #fff,
        850px 450px #F8A922;
    animation: contact_page_twinkle 3s infinite alternate;
}

.contact_page_stars::after {
    animation-delay: 1.5s;
}

@keyframes contact_page_twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.contact_page_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Page Title */
.contact_page_title_wrapper {
    text-align: center;
    margin-bottom: 60px;
    animation: contact_page_fadeInDown 1s ease;
}

.contact_page_main_title {
    font-size: 3rem;
    font-weight: 700;
    color: #F8A922;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(248, 169, 34, 0.5);
    position: relative;
    display: inline-block;
}

.contact_page_main_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F8A922, transparent);
}

.contact_page_subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Contact Grid */
.contact_page_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Contact Info Section */
.contact_page_info_section {
    animation: contact_page_slideInLeft 1s ease;
}

.contact_page_info_card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 169, 34, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact_page_info_card:hover {
    border-color: rgba(248, 169, 34, 0.5);
    box-shadow: 0 8px 32px rgba(248, 169, 34, 0.2);
}

.contact_page_info_title {
    font-size: 2rem;
    color: #F8A922;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact_page_info_desc {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Details */
.contact_page_details {
    margin-bottom: 40px;
}

.contact_page_detail_item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact_page_detail_item:hover {
    background: rgba(248, 169, 34, 0.05);
    border-color: rgba(248, 169, 34, 0.3);
    transform: translateX(5px);
}

.contact_page_icon_wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #F8A922, #9C1414);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact_page_icon_wrapper.contact_page_whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact_page_detail_item:hover .contact_page_icon_wrapper {
    transform: rotateY(360deg);
}

.contact_page_icon_wrapper svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact_page_detail_content h3 {
    font-size: 1.1rem;
    color: #F8A922;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact_page_detail_content a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact_page_detail_content a:hover {
    color: #F8A922;
}

.contact_page_detail_content p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Business Hours */
.contact_page_hours {
    background: rgba(248, 169, 34, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(248, 169, 34, 0.2);
}

.contact_page_hours h3 {
    color: #F8A922;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact_page_hours_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact_page_hours_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_page_hours_item:last-child {
    border-bottom: none;
}

.contact_page_hours_item span:first-child {
    font-weight: 500;
}

.contact_page_hours_item span:last-child {
    color: #F8A922;
}

/* Form Section */
.contact_page_form_section {
    animation: contact_page_slideInRight 1s ease;
}

.contact_page_form_card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 169, 34, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact_page_form_card:hover {
    border-color: rgba(248, 169, 34, 0.5);
    box-shadow: 0 8px 32px rgba(248, 169, 34, 0.2);
}

.contact_page_form_title {
    font-size: 1.8rem;
    color: #F8A922;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact_page_form_desc {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Map Section */
.contact_page_map_section {
    margin-top: 80px;
    animation: contact_page_fadeInUp 1s ease;
}

.contact_page_map_title {
    font-size: 2.5rem;
    color: #F8A922;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(248, 169, 34, 0.3);
}

.contact_page_map_wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(248, 169, 34, 0.3);
    transition: all 0.3s ease;
}

.contact_page_map_wrapper:hover {
    border-color: rgba(248, 169, 34, 0.6);
    box-shadow: 0 10px 40px rgba(248, 169, 34, 0.2);
}

.contact_page_map_wrapper iframe {
    display: block;
    filter: grayscale(20%) contrast(1.2) brightness(0.9);
    transition: filter 0.3s ease;
}

.contact_page_map_wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

/* Animations */
@keyframes contact_page_fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contact_page_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contact_page_slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contact_page_slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact_page_container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .contact_page_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact_page_main_title {
        font-size: 2.5rem;
    }

    .contact_page_info_section,
    .contact_page_form_section {
        animation: contact_page_fadeInUp 1s ease;
    }
}

@media (max-width: 768px) {
    .contact_page_section {
        padding: 60px 0;
    }

    .contact_page_main_title {
        font-size: 2rem;
    }

    .contact_page_subtitle {
        font-size: 1rem;
    }

    .contact_page_info_card,
    .contact_page_form_card {
        padding: 30px 20px;
    }

    .contact_page_info_title,
    .contact_page_form_title {
        font-size: 1.5rem;
    }

    .contact_page_map_title {
        font-size: 2rem;
    }

    .contact_page_detail_item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_page_hours_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .contact_page_container {
        padding: 0 15px;
    }

    .contact_page_main_title {
        font-size: 1.8rem;
    }

    .contact_page_title_wrapper {
        margin-bottom: 40px;
    }

    .contact_page_info_card,
    .contact_page_form_card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .contact_page_detail_item {
        padding: 20px 15px;
    }

    .contact_page_icon_wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .contact_page_icon_wrapper svg {
        width: 20px;
        height: 20px;
    }

    .contact_page_map_title {
        font-size: 1.8rem;
    }

    .contact_page_map_wrapper {
        border-radius: 15px;
    }
}

/* Print Styles */
@media print {
    .contact_page_stars {
        display: none;
    }

    .contact_page_section {
        background: white;
        color: black;
    }

    .contact_page_info_card,
    .contact_page_form_card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}