/* =====================================================
   AR VISUALS - ABOUT PAGE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f8f5ef;
    color: #071a3b;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --navy: #031737;
    --gold: #d99b32;
    --cream: #f8f5ef;
    --white: #ffffff;
    --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;
    height: 29px;
    line-height: 29px;
}

.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;
    margin-left: 7px;
}

.logo-line {
    color: white;
    font-size: 9px;
    letter-spacing: 1.1px;
    margin-top: 8px;
}


/* NAVIGATION */

.nav-links {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;
}

.nav-links a {
    color: white;

    font-size: 14px;
    font-weight: 500;

    padding: 10px 0;

    position: relative;

    white-space: nowrap;

    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.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 */

.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);
}


/* MOBILE */

.menu-btn {
    display: none;

    background: transparent;
    border: none;

    color: var(--gold);

    font-size: 25px;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;
}


/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {

    height: 270px;

    position: relative;

    /* SAME BACKGROUND AS CTA */

    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;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.about-hero-content {

    position: relative;

    z-index: 2;

    color: white;

}


.about-hero-content > p {

    color: var(--gold);

    letter-spacing: 3px;

    font-size: 12px;

    margin-bottom: 8px;

}


.about-hero-content h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    font-weight: 600;

    letter-spacing: 2px;

}


.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 8px;

    font-size: 12px;

}


.breadcrumb a {

    color: white;

}


.breadcrumb span:last-child {

    color: var(--gold);

}


/* =====================================================
   WHO WE ARE
===================================================== */

.who-section {

    padding: 85px 7%;

    background: var(--cream);

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 75px;

    align-items: center;

}


.who-content {

    max-width: 540px;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.section-label span {

    width: 42px;

    height: 1px;

    background: var(--gold);

}


.who-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;

    line-height: 0.95;

    color: var(--text);

    margin-bottom: 25px;

}


.who-content h2 span {

    color: var(--gold);

}


.who-content p {

    font-size: 14px;

    line-height: 1.8;

    color: #4d4d4d;

    margin-bottom: 13px;

}


.who-content .main-text {

    color: #222;

}


.gold-btn {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    background: var(--navy);

    color: var(--gold);

    border: 1px solid var(--gold);

    padding: 14px 22px;

    margin-top: 15px;

    font-size: 12px;

    transition: 0.3s;

}


.gold-btn:hover {

    background: var(--gold);

    color: var(--navy);

}


.who-image {

    height: 450px;

    overflow: hidden;

}


.who-image img {

    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}


.who-image:hover img {

    transform: scale(1.03);

}


/* =====================================================
   WHAT WE DO
===================================================== */

.what-section {

    padding: 85px 7%;

    background: white;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 75px;

    align-items: center;

}


.what-image {

    height: 420px;

    overflow: hidden;

}


.what-image img {

    height: 100%;

    object-fit: cover;

}


.what-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    line-height: 1;

    color: var(--text);

    margin-bottom: 30px;

}


.what-content h2 span {

    color: var(--gold);

}


/* SERVICE LIST */

.service-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.service-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 17px;

    border-bottom: 1px solid #ddd5c6;

}


.service-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    background: var(--navy);

    border: 1px solid var(--gold);

    color: var(--gold);

    display: flex;

    justify-content: center;

    align-items: center;

}


.service-item h3 {

    font-family: "Cormorant Garamond", serif;

    color: var(--text);

    font-size: 20px;

}


.service-item p {

    font-size: 11px;

    color: #666;

    margin-top: 3px;

}


/* =====================================================
   VALUES
===================================================== */

.values-section {

    background: var(--navy);

    padding: 65px 6%;

    color: white;

}


.values-heading {

    text-align: center;

    margin-bottom: 40px;

}


.values-heading > p {

    color: var(--gold);

    letter-spacing: 2px;

    font-size: 11px;

    margin-bottom: 8px;

}


.values-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 43px;

}


.values-heading h2 span {

    color: var(--gold);

}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.value-card {

    text-align: center;

    padding: 15px 35px;

    border-right: 1px solid
        rgba(217,155,50,0.3);

}


.value-card:last-child {

    border-right: none;

}


.value-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 15px;

    border-radius: 50%;

    border: 2px solid var(--gold);

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}


.value-card h3 {

    font-family: "Cormorant Garamond", serif;

    color: var(--gold);

    font-size: 19px;

    margin-bottom: 7px;

}


.value-card p {

    font-size: 11px;

    line-height: 1.6;

    color: #ddd;

}


/* =====================================================
   CTA
===================================================== */

.about-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;

}


.about-cta p {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.about-cta h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    margin-bottom: 20px;

}


.about-cta h2 span {

    color: var(--gold);

}


.about-cta a {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 13px 25px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 12px;

    transition: 0.3s;

}


.about-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);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .logo {
        width: 230px;
        min-width: 230px;
    }

    .quote-btn {
        min-width: 150px;
    }

}


@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;
        margin-left: 2px;
    }

    .logo-line {
        font-size: 8px;
        margin-left: 2px;
    }

    .nav-links,
    .quote-btn {
        display: none;
    }

    .menu-btn {
        display: block;
        margin-left: auto;
    }

    .who-section,
    .what-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .value-card:nth-child(2) {
        border-right: none;
    }

    footer {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .navbar {
        height: 80px;
        min-height: 80px;
    }

    .logo {
        width: 180px;
        min-width: 180px;
        height: 70px;
    }

    .ar {
        font-size: 40px;
    }

    .visuals {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .logo-line {
        display: none;
    }

    .about-hero {
        height: 220px;
    }

    .about-hero-content h1 {
        font-size: 45px;
    }

    .who-section,
    .what-section {
        padding: 60px 7%;
    }

    .who-image,
    .what-image {
        height: 280px;
    }

    .who-content h2 {
        font-size: 43px;
    }

    .what-content h2 {
        font-size: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-right: none;
        border-bottom:
            1px solid rgba(217,155,50,0.25);
        padding-bottom: 25px;
    }

    .value-card:last-child {
        border-bottom: none;
    }

    .about-cta h2 {
        font-size: 38px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 45px 10%;
    }

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    top: 80px;

    left: 0;

    width: 100%;

    background: var(--navy);

    z-index: 15;

    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);
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 31px;

    z-index: 9999;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 600px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 28px;
    }

}