/* ================================
   CONTACT INFORMATION
================================ */

.contact-info {
    padding: 90px 8%;
    background: var(--bg-color, #111);
    color: var(--text-color, #fff);
}

.section-title {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title span {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-title h2 {
    margin: 10px 0 15px;
    font-size: 36px;
}

.section-title p {
    color: #aaa;
    line-height: 1.8;
}


.contact-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.contact-card {
    padding: 35px 25px;

    text-align: center;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background: rgba(255, 255, 255, 0.03);

    transition: 0.3s ease;
}


.contact-card:hover {
    transform: translateY(-8px);

    border-color: #D4AF37;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


.contact-icon {
    font-size: 30px;

    margin-bottom: 20px;
}


.contact-card h3 {
    margin-bottom: 15px;

    font-size: 19px;
}


.contact-card p {
    color: #aaa;

    line-height: 1.8;

    min-height: 60px;
}


.contact-link {
    display: inline-block;

    margin-top: 15px;

    color: #D4AF37;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}


.contact-link:hover {
    color: #fff;
}


.contact-status {
    display: inline-block;

    margin-top: 15px;

    color: #D4AF37;

    font-size: 13px;
}


.social-links {
    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 15px;
}


.social-links a {
    color: #D4AF37;

    text-decoration: none;

    font-size: 13px;
}


.social-links a:hover {
    color: #fff;
}

@media (max-width: 900px) {

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

}


@media (max-width: 600px) {

    .contact-info {
        padding: 70px 5%;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

/* ================================
   CONTACT FORM & MAP
================================ */

.contact-main {
    padding: 100px 8%;
    background: var(--bg-color, #111);
}


.contact-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;
}


/* FORM */

.contact-form-box,
.contact-map-box {
    padding: 40px;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background: rgba(255, 255, 255, 0.03);
}


.form-heading span,
.map-heading span {
    color: #D4AF37;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;
}


.form-heading h2,
.map-heading h2 {
    font-size: 32px;

    margin: 10px 0 15px;
}


.form-heading p,
.map-heading p {
    color: #aaa;

    line-height: 1.8;

    margin-bottom: 35px;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


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


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    color: #ddd;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.04);

    color: #fff;

    font-family: inherit;

    outline: none;

    transition: 0.3s;

    box-sizing: border-box;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #D4AF37;

    background: rgba(255, 255, 255, 0.06);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}


.contact-submit {
    width: 100%;

    padding: 15px 25px;

    border: 1px solid #D4AF37;

    background: #D4AF37;

    color: #111;

    font-family: inherit;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.contact-submit:hover {
    background: transparent;

    color: #D4AF37;
}


/* MAP */

.map-heading {
    margin-bottom: 30px;
}


.map-wrapper {
    width: 100%;

    height: 430px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.25);
}


.map-wrapper iframe {
    width: 100%;

    height: 100%;

    border: 0;

    filter: grayscale(100%);
}


.form-message {
    margin-top: 15px;

    text-align: center;

    font-size: 14px;

    color: #D4AF37;
}


@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


@media (max-width: 600px) {

    .contact-main {
        padding: 70px 5%;
    }

    .contact-form-box,
    .contact-map-box {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-heading h2,
    .map-heading h2 {
        font-size: 27px;
    }

    .map-wrapper {
        height: 320px;
    }

}

/* ================================
   FOOTER
================================ */

.footer {
    background: #090909;

    color: #fff;

    padding-top: 70px;

    border-top: 1px solid rgba(212, 175, 55, 0.25);
}


.footer-container {
    max-width: 1200px;

    margin: auto;

    padding: 0 8% 60px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.3fr;

    gap: 50px;
}


/* BRAND */

.footer-logo {
    color: #D4AF37;

    font-size: 25px;

    margin-bottom: 18px;
}


.footer-column > p {
    color: #999;

    line-height: 1.8;

    font-size: 14px;
}


/* HEADINGS */

.footer-column h3 {
    font-size: 16px;

    margin-bottom: 22px;

    color: #fff;
}


/* LINKS */

.footer-column > a {
    display: block;

    color: #999;

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 12px;

    transition: 0.3s;
}


.footer-column > a:hover {
    color: #D4AF37;

    transform: translateX(4px);
}


/* SOCIAL */

.footer-social {
    display: flex;

    gap: 15px;

    margin-top: 25px;

    flex-wrap: wrap;
}


.footer-social a {
    color: #D4AF37;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}


.footer-social a:hover {
    color: #fff;
}


/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 22px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #777;

    font-size: 12px;
}
.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 13px 24px;

    border-radius: 4px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.viber-btn {
    background: #7360F2;
    color: #fff;
}

.viber-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* =================================
   CONTACT CHANNELS
================================= */

.contact-channels {
    width: 100%;
    max-width: 700px;
    margin: auto;
}


.contact-channels-title {
    text-align: center;
    margin-bottom: 40px;
}


.contact-channels-title span {
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}


.contact-channels-title h2 {
    font-size: 34px;
    margin: 10px 0 15px;
}


.contact-channels-title p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}


/* CHANNEL GRID */

.contact-channel-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.contact-channel {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px 22px;

    background: #181818;

    border: 1px solid rgba(212, 175, 55, 0.18);

    color: #fff;

    text-decoration: none;

    transition: 0.3s;
}


.contact-channel:hover {
    transform: translateX(6px);

    border-color: #D4AF37;

    background: #1d1d1d;
}


/* ICON */

.channel-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.3);

    border-radius: 50%;

    font-size: 22px;
}


/* TEXT */

.channel-info {
    flex: 1;
}


.channel-info h3 {
    margin: 0 0 4px;

    font-size: 17px;
}


.channel-info p {
    margin: 0 0 4px;

    color: #888;

    font-size: 12px;
}


.channel-info span {
    color: #D4AF37;

    font-size: 13px;
}


/* ARROW */

.channel-arrow {
    color: #D4AF37;

    font-size: 22px;

    transition: 0.3s;
}


.contact-channel:hover .channel-arrow {
    transform: translateX(5px);
}


/* BOOKING */

.contact-booking {
    margin-top: 35px;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #171717,
            #101010
        );

    border: 1px solid rgba(212, 175, 55, 0.25);
}


.contact-booking p {
    margin: 0 0 18px;

    color: #aaa;

    font-size: 14px;
}


.contact-booking a {
    display: inline-block;

    padding: 12px 25px;

    background: #D4AF37;

    color: #111;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}


.contact-booking a:hover {
    background: transparent;

    color: #D4AF37;

    border: 1px solid #D4AF37;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .contact-channels-title h2 {
        font-size: 28px;
    }


    .contact-channel {
        padding: 17px;

        gap: 14px;
    }


    .channel-icon {
        width: 44px;
        height: 44px;

        font-size: 19px;
    }


    .channel-info h3 {
        font-size: 15px;
    }


    .channel-info p {
        font-size: 11px;
    }


    .channel-info span {
        font-size: 12px;
    }


    .contact-booking {
        padding: 25px 18px;
    }

}