/*Contact Page Style*/
 
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500&display=swap');
 
/* Colour Palette Vars*/
:root {
    --blue-black:   #111518;
    --dark-blue:    #2D3238;
    --steel-grey:   #737D87;
    --ice-silver:   #C4CCD4;
    --cool-white:   #F0F4F7;
    --powder-blue:  #6A9FBF;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--blue-black);
}

/* <Banner Section> */
.banner {
    height: 400px;
    background: linear-gradient(135deg, #111518 0%, #1e2a35 50%, #2D3238 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
}
 
/* background */
.banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 159, 191, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
 
/* label */
.banner h2 {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--powder-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}
 
/* main heading */
.banner h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 20px 0;
    line-height: 1.1;
}
 
/* banner text */
.banner p {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ice-silver);
    line-height: 1.75;
    max-width: 480px;
    margin: 0;
}

/* <Contact_info Section> */
.contact_info {
    background-color: var(--dark-blue);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0;
    border-top: 1px solid rgba(196, 204, 212, 0.08);
    border-bottom: 1px solid rgba(196, 204, 212, 0.08);
}

.instagram_info,
.whatsapp_info,
.location_info {
    padding: 52px 48px;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
}

.instagram_info:hover,
.whatsapp_info:hover {
    background-color: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.location_info:hover {
    background-color: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.location_info:hover .fa-location-dot {
    transform: scale(1.15);
}

.location_info:hover p:first-of-type {
    color: var(--powder-blue);
}

/* Vertical dividers between columns */
.instagram_info::after,
.whatsapp_info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(196, 204, 212, 0.2);
}
 
/* Icons */
.instagram_info .fa-instagram,
.whatsapp_info .fa-whatsapp,
.location_info .fa-location-dot {
    font-size: 1.8rem;
    color: var(--powder-blue);
    margin: 0 auto 18px auto;
    display: block;
    text-align: center;
    transition: transform 0.25s ease;
}
 
.instagram_info:hover .fa-instagram,
.whatsapp_info:hover .fa-whatsapp,
.location_info:hover .fa-location-dot {
    transform: scale(1.15);
}
 
/* Column Headings */
.instagram_info h3,
.whatsapp_info h3,
.location_info h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ice-silver);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
 
/* First paragraph — contact detail */
.instagram_info p:first-of-type,
.whatsapp_info p:first-of-type,
.location_info p:first-of-type {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cool-white);
    margin: 0 0 10px 0;
    transition: color 0.25s ease;
}

.instagram_info:hover p:first-of-type,
.whatsapp_info:hover p:first-of-type {
    color: var(--powder-blue);
}
 
/* Second paragraph — description */
.instagram_info p:last-of-type,
.whatsapp_info p:last-of-type,
.location_info p:last-of-type {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ice-silver);
    line-height: 1.7;
    margin: 0;
}

/* <Large Banners Section> */
.large_banners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 100px 80px 80px 80px;
    box-sizing: border-box;
}
 
/* Remove default link styling on banner wrappers */
.large_banners a {
    text-decoration: none;
    width: 100%;
    max-width: 860px;
    display: block;
}

/* Group the two text lines inside each banner */
.banner_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
 
/* Shared banner styles */
.insta_banner,
.whatsapp_banner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 860px;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 28px 36px;
    gap: 24px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
/* ── Instagram Banner ── */
.insta_banner {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 40%, #8134af 70%, #515bd4 100%);
    box-shadow: 0 6px 24px rgba(221, 42, 123, 0.3);
}
 
.insta_banner:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(221, 42, 123, 0.5);
    cursor: pointer;
}
 
/* Shimmer effect on hover */
.insta_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transition: left 0.5s ease;
    pointer-events: none;
}
 
.insta_banner:hover::before {
    left: 160%;
}
 
/* ── WhatsApp Banner ── */
.whatsapp_banner {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
}

.whatsapp_banner:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}
 
/* ── Icons ── */
.insta_banner .fa-instagram,
.whatsapp_banner .fa-whatsapp {
    font-size: 2.4rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}
 
.insta_banner:hover .fa-instagram,
.whatsapp_banner:hover .fa-whatsapp {
    background-color: rgba(255, 255, 255, 0.32);
}
 
/* ── Text ── */
.insta_banner h2,
.whatsapp_banner h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.02em;
}
 
.insta_banner h3,
.whatsapp_banner h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.02em;
}
 
/* ── Arrow icon — pushed to the far right ── */
.insta_banner .fa-arrow-right,
.whatsapp_banner .fa-arrow-right {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.insta_banner:hover .fa-arrow-right,
.whatsapp_banner:hover .fa-arrow-right {
    transform: translateX(5px);
    color: #ffffff;
}

/* <Contact Section> */
.contact_section {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: start;
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid rgba(196, 204, 212, 0.08);
}
 
/* Vertical divider */
.contact_section::before {
    content: '';
    grid-column: 2;
    grid-row: 1;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--ice-silver) 20%, var(--powder-blue) 50%, var(--ice-silver) 80%, transparent 100%);
    opacity: 0.4;
    align-self: stretch;
}
 
/* ── Map ── */
.map {
    padding: 0 56px 0 0;
}
 
.map h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 8px 0;
}
 
.map h1::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--powder-blue);
    margin-top: 10px;
    margin-bottom: 24px;
}
 
.map iframe {
    width: 100%;
    height: 380px;
    border: 1px solid rgba(196, 204, 212, 0.2);
    border-radius: 12px;
    filter: grayscale(20%) brightness(0.9);
    display: block;
}
 
/* ── Contact Form ── */
.contact_form {
    padding: 0 0 0 56px;
}
 
.contact_form h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--cool-white);
    letter-spacing: 0.02em;
    margin: 0 0 8px 0;
}
 
.contact_form h1::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--powder-blue);
    margin-top: 10px;
    margin-bottom: 24px;
}
 
.contact_form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact_form label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ice-silver);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
}
 
.contact_form input,
.contact_form select,
.contact_form textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 204, 212, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cool-white);
    outline: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
 
.contact_form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737D87' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.contact_form select option {
    background-color: var(--dark-blue);
    color: var(--cool-white);
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: var(--ice-silver);
    opacity: 0.55;
}
 
.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    border-color: var(--powder-blue);
    background-color: rgba(106, 159, 191, 0.06);
    box-shadow: 0 0 0 3px rgba(106, 159, 191, 0.12);
}
 
.contact_form textarea {
    resize: vertical;
    min-height: 130px;
}
 
/* Small note above the form fields */
.form_note {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--steel-grey);
    letter-spacing: 0.06em;
    margin: 0 0 8px 0;
    opacity: 0.7;
}

.contact_form button {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cool-white);
    background-color: var(--powder-blue);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    align-self: stretch;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(106, 159, 191, 0.3);
}
 
.contact_form button:hover {
    background-color: #5a8faf;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 159, 191, 0.45);
}
 
.contact_form button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(106, 159, 191, 0.3);
}

/* WhatsApp icon inside submit button */
.contact_form button .fa-whatsapp {
    margin-left: 8px;
    font-size: 1rem;
    vertical-align: middle;
}

/* Form success confirmation message */
.form_success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 8px;
    animation: successFadeIn 0.4s ease;
}

.form_success.visible {
    display: flex;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form_success i {
    color: #25d366;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.form_success span {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ice-silver);
    line-height: 1.5;
}

/* < Responsive Breakpoints > */

/* Extra Large (1600px+) */
@media (min-width: 1600px) {
    .banner {
        padding: 0 120px;
        height: 440px;
    }

    .banner h1 {
        font-size: 4.2rem;
    }

    .contact_info {
        max-width: 100%;
    }

    .instagram_info,
    .whatsapp_info,
    .location_info {
        padding: 64px 72px;
    }

    .large_banners {
        padding: 100px 120px 100px 120px;
    }

    .large_banners a,
    .insta_banner,
    .whatsapp_banner {
        max-width: 1100px;
    }

    .contact_section {
        max-width: 1400px;
        padding: 100px 120px;
    }
}

/* Tablet Landscape (≤1024px) */
@media (max-width: 1024px) {
    .banner {
        padding: 0 48px;
        height: 340px;
    }

    .banner h1 {
        font-size: 2.8rem;
    }

    .instagram_info,
    .whatsapp_info,
    .location_info {
        padding: 40px 28px;
    }

    .large_banners {
        padding: 72px 48px 72px 48px;
    }

    .insta_banner,
    .whatsapp_banner {
        padding: 22px 28px;
        gap: 18px;
    }

    .contact_section {
        padding: 60px 48px;
    }

    .map {
        padding: 0 36px 0 0;
    }

    .contact_form {
        padding: 0 0 0 36px;
    }

    .map h1,
    .contact_form h1 {
        font-size: 1.6rem;
    }
}

/* Tablet Portrait (≤768px) */
@media (max-width: 768px) {
    /* Banner */
    .banner {
        padding: 0 32px;
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner h1 {
        font-size: 2.4rem;
    }

    .banner p {
        max-width: 100%;
    }

    /* Contact info — stack to single column */
    .contact_info {
        grid-template-columns: 1fr;
    }

    /* Remove vertical dividers, add horizontal ones instead */
    .instagram_info::after,
    .whatsapp_info::after {
        top: auto;
        bottom: 0;
        right: 10%;
        left: 10%;
        width: auto;
        height: 1px;
    }

    .location_info::after {
        display: none;
    }

    .instagram_info,
    .whatsapp_info,
    .location_info {
        padding: 36px 32px;
    }

    /* Large banners */
    .large_banners {
        padding: 56px 32px 64px 32px;
    }

    .insta_banner,
    .whatsapp_banner {
        padding: 20px 24px;
        gap: 16px;
        border-radius: 12px;
    }

    .insta_banner h2,
    .whatsapp_banner h2 {
        font-size: 1.1rem;
    }

    .insta_banner h3,
    .whatsapp_banner h3 {
        font-size: 0.78rem;
    }

    /* Contact section — stack map above form */
    .contact_section {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        gap: 56px;
    }

    .contact_section::before {
        display: none;
    }

    .map {
        padding: 0;
    }

    .contact_form {
        padding: 0;
    }

    .map iframe {
        height: 300px;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    /* Banner */
    .banner {
        padding: 48px 24px;
    }

    .banner h2 {
        font-size: 0.68rem;
    }

    .banner h1 {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .banner p {
        font-size: 0.88rem;
    }

    /* Contact info */
    .instagram_info,
    .whatsapp_info,
    .location_info {
        padding: 32px 24px;
    }

    .large_banners {
        padding: 48px 20px 56px 20px;
        gap: 14px;
    }

    .insta_banner,
    .whatsapp_banner {
        padding: 18px 20px;
        gap: 14px;
    }

    .insta_banner .fa-arrow-right,
    .whatsapp_banner .fa-arrow-right {
        display: none;
    }

    .insta_banner .fa-instagram,
    .whatsapp_banner .fa-whatsapp {
        font-size: 1.8rem;
        padding: 10px;
    }

    /* Contact section */
    .contact_section {
        padding: 48px 24px;
        gap: 48px;
    }

    .map h1,
    .contact_form h1 {
        font-size: 1.5rem;
    }

    .map iframe {
        height: 260px;
    }
}