/* =====================================================
   AR VISUALS - CONTACT PAGE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Montserrat", sans-serif;

    background: #f8f5ef;

    color: #071a3b;
}


a {
    text-decoration: none;
    color: inherit;
}


:root {

    --navy: #031737;

    --gold: #d99b32;

    --cream: #f8f5ef;

    --text: #071a3b;

}



/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    width: 100%;

    height: 170px;

    background: var(--navy);

    display: flex;

    align-items: center;

    padding: 5px 4.5% 0;

    gap: 30px;

    position: relative;

    z-index: 20;
}


/* LOGO */

.logo {

    width: 280px;

    min-width: 280px;

    height: 112px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    line-height: 1;
}


.crown {

    font-size: 28px;
}


.ar {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    font-weight: 600;

    letter-spacing: -4px;
}


.visuals {

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    letter-spacing: 8px;
}


.logo-line {

    color: white;

    font-size: 9px;

    letter-spacing: 1.1px;

    margin-top: 8px;
}



/* NAV LINKS */

.nav-links {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 40px;
}


.nav-links a {

    color: white;

    font-size: 14px;

    padding: 10px 0;

    position: relative;

    white-space: nowrap;

    transition: 0.3s;
}


.nav-links a:hover,
.nav-links a.active {

    color: var(--gold);
}


.nav-links a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 2px;

    background: var(--gold);
}



/* QUOTE BUTTON */

.quote-btn {

    min-width: 185px;

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 15px 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    transition: 0.3s;
}


.quote-btn:hover {

    background: var(--gold);

    color: var(--navy);
}



/* MENU BUTTON */

.menu-btn {

    display: none;

    background: none;

    border: none;

    color: var(--gold);

    font-size: 25px;

}



/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    display: none;

}


.mobile-menu.show {

    display: flex;
}



/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {

    height: 270px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        linear-gradient(
            rgba(3,23,55,0.91),
            rgba(3,23,55,0.91)
        ),

        url("images/light.png");

    background-size: cover;

    background-position: center;
}


.contact-hero-content {

    position: relative;

    z-index: 2;

    color: white;
}


.contact-hero-content > p {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


.contact-hero h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    letter-spacing: 2px;
}


.breadcrumb {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 8px;

    font-size: 12px;
}


.breadcrumb a {

    color: white;

}


.breadcrumb span:last-child {

    color: var(--gold);

}



/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    padding: 90px 8%;

    background: var(--cream);

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: start;
}



/* LEFT */

.contact-info {

    padding-top: 10px;
}


.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.section-label span {

    width: 40px;

    height: 1px;

    background: var(--gold);
}


.contact-info h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    line-height: 0.98;

    color: var(--text);

    margin-bottom: 22px;
}


.contact-info h2 span {

    color: var(--gold);

}


.intro-text {

    color: #666;

    font-size: 13px;

    line-height: 1.8;

    max-width: 450px;

    margin-bottom: 35px;
}



/* CONTACT ITEMS */

.contact-item {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 23px;
}


.contact-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    background: var(--navy);

    color: var(--gold);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 17px;
}


.contact-item h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;

    color: var(--text);

    margin-bottom: 3px;
}


.contact-item p {

    color: #666;

    font-size: 12px;
}



/* =====================================================
   FORM
===================================================== */

.contact-form-box {

    background: white;

    padding: 50px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.06);

    border-top: 2px solid var(--gold);
}


.form-heading p {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.form-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

    color: var(--text);

    margin-bottom: 30px;
}


.form-heading h2 span {

    color: var(--gold);

}



/* FORM ROW */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-size: 9px;

    letter-spacing: 1px;

    color: #777;

    margin-bottom: 7px;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #ddd6ca;

    background: #fcfaf6;

    padding: 13px 14px;

    outline: none;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    color: var(--text);

    transition: 0.3s;
}


.form-group textarea {

    resize: vertical;

    min-height: 110px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    background: white;
}



/* SUBMIT */

.submit-btn {

    width: 100%;

    padding: 16px;

    border: 1px solid var(--gold);

    background: var(--navy);

    color: var(--gold);

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: 0.3s;
}


.submit-btn:hover {

    background: var(--gold);

    color: var(--navy);
}


.form-note {

    text-align: center;

    color: #999;

    font-size: 9px;

    margin-top: 12px;
}


.form-note i {

    margin-right: 4px;
}



/* =====================================================
   LOCATION
===================================================== */

.location-section {

    padding: 55px 8%;

    background: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.location-heading p {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 5px;
}


.location-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 40px;

    color: var(--text);
}


.location-heading h2 span {

    color: var(--gold);
}


.location-heading small {

    display: block;

    color: #777;

    font-size: 11px;

    margin-top: 5px;
}



/* MAP */

.map-link {

    display: flex;

    align-items: center;

    gap: 12px;

    border: 1px solid var(--gold);

    padding: 14px 22px;

    color: var(--navy);

    font-size: 11px;

    transition: 0.3s;
}


.map-link i:first-child {

    color: var(--gold);

}


.map-link i:last-child {

    font-size: 9px;

}


.map-link:hover {

    background: var(--navy);

    color: var(--gold);
}



/* =====================================================
   CTA
===================================================== */

.contact-cta {

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(3,23,55,0.91),
            rgba(3,23,55,0.91)
        ),

        url("images/light.png");

    background-size: cover;

    background-position: center;
}


.contact-cta p {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.contact-cta h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    margin-bottom: 20px;
}


.contact-cta h2 span {

    color: var(--gold);
}


.contact-cta a {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    border: 1px solid var(--gold);

    color: var(--gold);

    padding: 13px 24px;

    font-size: 11px;

    transition: 0.3s;
}


.contact-cta a:hover {

    background: var(--gold);

    color: var(--navy);
}



/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #02122c;

    color: white;

    padding: 55px 8% 40px;

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;

    gap: 50px;
}


.footer-brand {

    color: var(--gold);
}


.footer-ar {

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;
}


.footer-visuals {

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    letter-spacing: 8px;
}


.footer-brand p {

    color: white;

    font-size: 9px;

    letter-spacing: 1px;

    margin-top: 7px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {

    font-family: "Cormorant Garamond", serif;

    color: var(--gold);

    font-size: 19px;

    margin-bottom: 5px;
}


.footer-column a,
.footer-column p {

    font-size: 11px;

    color: #ccc;
}


.footer-column a:hover {

    color: var(--gold);
}


.footer-column p {

    display: flex;

    align-items: center;

    gap: 9px;
}


.footer-column i {

    color: var(--gold);
}



/* =====================================================
   COPYRIGHT
===================================================== */

.copyright {

    background: #010e25;

    color: #999;

    text-align: center;

    font-size: 10px;

    padding: 14px;

    border-top:
        1px solid
        rgba(217,155,50,0.2);
}



/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    z-index: 9999;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.25);

    transition: 0.3s;
}


.whatsapp-float:hover {

    transform: scale(1.08);

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {


    .navbar {

        height: 90px;

        min-height: 90px;

        padding: 0 5%;

    }


    .logo {

        width: 210px;

        min-width: 210px;

        height: 85px;

        align-items: flex-start;

        text-align: left;

    }


    .crown {

        display: none;

    }


    .ar {

        font-size: 47px;

    }


    .visuals {

        font-size: 23px;

        letter-spacing: 6px;

    }


    .logo-line {

        font-size: 8px;

    }


    .nav-links,
    .quote-btn {

        display: none;

    }


    .menu-btn {

        display: block;

        margin-left: auto;

    }


    .contact-section {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    footer {

        grid-template-columns:
            repeat(2, 1fr);

    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {


    .navbar {

        height: 80px;

        min-height: 80px;

    }


    .logo {

        width: 180px;

        min-width: 180px;

    }


    .ar {

        font-size: 40px;

    }


    .visuals {

        font-size: 20px;

        letter-spacing: 5px;

    }


    .logo-line {

        display: none;

    }


    .contact-hero {

        height: 220px;

    }


    .contact-hero h1 {

        font-size: 45px;

    }


    .contact-section {

        padding: 60px 6%;

    }


    .contact-info h2 {

        font-size: 43px;

    }


    .contact-form-box {

        padding: 30px 22px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .location-section {

        flex-direction: column;

        align-items: flex-start;

        padding: 45px 7%;

    }


    .contact-cta h2 {

        font-size: 38px;

    }


    footer {

        grid-template-columns: 1fr;

        gap: 30px;

        padding: 45px 10%;

    }


    .whatsapp-float {

        width: 52px;

        height: 52px;

        right: 18px;

        bottom: 18px;

        font-size: 27px;

    }

}



/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    top: 80px;

    left: 0;

    width: 100%;

    background: var(--navy);

    z-index: 100;

    padding: 20px 25px;

    flex-direction: column;

    gap: 15px;

    border-top:
        1px solid
        rgba(217,155,50,0.3);

}


.mobile-menu.show {

    display: flex;

}


.mobile-menu a {

    color: white;

    padding: 10px 0;

    font-size: 13px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

}


.mobile-menu a:hover {

    color: var(--gold);

}