:root {
    --ink: #0b1020;
    --muted: #6b7280;
    --brand: #0f766e;
    --brand-2: #115e59;
    --surface: #ffffff;
    --blur-bg: rgba(255, 255, 255, .1);
    --radius: 18px;
    --shadow: 0 12px 36px rgba(2, 6, 23, .18);
    --container: 1200px;
    --cta-bg: linear-gradient(135deg, #0f766e, #115e59);
    --cta-fg: #ffffff;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background-image: url("../images/grandebay-wedding.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* A11y helper */
.sr-only,
.gbf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 90vh;
    /* desktop */
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
}

.logo {
    display: inline-block;
    margin-bottom: 8px
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35))
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 100%;
    /* ✅ full height of the hero section */
    width: 100%;
    /* ✅ match hero width exactly */
    /* background: linear-gradient(to bottom right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.45)); */
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: clamp(16px, 3vw, 24px)
}

/* ==== HERO GRID ORDER (desktop stays side-by-side) ==== */
/* Grid + areas */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .95fr;
    grid-template-areas: "left right";
    align-items: center;
    gap: clamp(18px, 3vw, 32px);
}

.hero-left {
    grid-area: left;
}

.hero-right {
    grid-area: right;
}

/* Desktop form visible; mobile form hidden */
.lead-form-desktop {
    display: block;
}

.lead-form-mobile {
    display: none;
}

/* =========================
   MOBILE / TABLET (≤ 980px)
   ========================= */
@media (max-width: 980px) {

    /* HERO: wide-looking video with no gaps */
    .hero {
        min-height: 62dvh;
        overflow: hidden;
        position: relative;
    }

    .hero__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 75%;
        object-fit: cover;
        object-position: center;
    }

    /* One-column layout in hero */
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "left";
        margin-top: -300px;
        text-align: center;
    }

    /* Title at top center, then big logo; hide lead inside hero on mobile */
    .hero-left {
        display: grid;
        grid-auto-rows: min-content;
        justify-items: center;
        align-content: start;
        row-gap: 50px;
    }

    .hero-left .title {
        order: 2;
        margin: 0;
    }

    .logo {
        order: 1;
        display: flex;
        justify-content: center;
        margin: 8px 0 6px;
    }

    .logo img {
        inline-size: clamp(120px, 22vw, 280px);
        block-size: auto;
        width: clamp(100px, 50vw, 250px);
        height: auto;
        margin: 0 auto;
        filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .35));
    }

    .hero-left .lead {
        display: none;
    }

    /* Hide desktop form inside hero; show mobile stack below lead */
    .lead-form-desktop {
        display: none;
    }

    .lead-form-mobile {
        display: block;
    }

    /* Lead section below hero with a royal background */
    .lead-section {
        display: block;
        background: linear-gradient(to bottom right,
                rgba(210, 207, 207, 0.55), rgba(216, 208, 208, 0.25) 40%, rgba(183, 173, 173, 0.45));
        /* royal color */
        color: #fff;
        padding: clamp(18px, 5vw, 28px);
        text-align: center;
        margin-top: -150px;
    }

    .lead-section .lead {
        display: block;
        margin: 0 auto;
        max-width: 68ch;
        font-size: clamp(16px, 4.5vw, 18px);
        line-height: 1.55;
        opacity: .98;
        color: #030000;
        font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    /* Mobile form immediately after the lead section */
    .lead-form-mobile .card {
        margin-top: clamp(10px, 3.5vw, 18px);
    }

    .lead-form-mobile #leadFormMobile label {
        color: #000;
    }

    .lead-form-mobile #leadFormMobile input,
    .lead-form-mobile #leadFormMobile select,
    .lead-form-mobile #leadFormMobile textarea {
        background: #fff;
        color: #000;
        border: 1px solid #000;
        outline: 2px solid #000;
    }

    .lead-form-mobile #leadFormMobile input::placeholder,
    .lead-form-mobile #leadFormMobile textarea::placeholder {
        color: #000;
        opacity: 1;
    }
}


.g-recaptcha {
    transform: scale(1);
    transform-origin: left top;
}

@media (max-width: 420px) {
    .g-recaptcha {
        transform: scale(.92);
    }
}

/* Tiny phones: soften title sizing a bit */
@media (max-width: 560px) {
    .title {
        font-size: clamp(24px, 8vw, 40px);
    }
}


.kicker {
    color: #e5f8f5;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .86rem;
    opacity: .9
}

.title {
    margin: .35rem 0 .6rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.08;
    font-size: clamp(28px, 5vw, 64px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.lead {
    color: #f2fbfa;
    font-size: clamp(15px, 1.6vw, 18px);
    max-width: 56ch;
    opacity: .92
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(15, 118, 110, .35);
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease
}

.btn:hover {
    background: var(--brand-2);
    transform: translateY(-1px)
}

.btn.secondary {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(2, 6, 23, .18)
}

/* Form card */
.card {
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: saturate(1.2) blur(6px);
    padding: clamp(14px, 2.5vw, 22px)
}

label {
    font-weight: 700;
    font-size: .9rem;
    color: #fff
}

form {
    display: grid;
    gap: .8rem
}

input,
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 12px;
    padding: .75rem .9rem;
    font: inherit;
    color: #fff;
    backdrop-filter: blur(6px);
    outline-offset: 2px;
    outline-color: #b7f3df
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .75)
}

#leadForm select option {
    color: #000
}

textarea {
    resize: vertical;
    min-height: 100px
}

/*.actions {*/
/*    display: flex;*/
/*    gap: .6rem;*/
/*    align-items: left;*/
/*    justify-content: flex-start;*/
/*    margin-top: .3rem*/
/*}*/

.actions button {
    padding: 0.55rem 1.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #0066cc;
    color: #fff;
    transition: background-color 0.2s ease;
}

.actions button:hover {
    background-color: #0052a3;
}

/* Responsive hero */
@media (max-width:980px) {
    .grid {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 100vh
    }
}

@media (max-width:560px) {
    .hero {
        min-height: 92vh
    }

    .logo img {
        height: 130px
    }
}

/* ===== SECTION HEADINGS ===== */
.section-title {
    margin: 0 0 .8rem;
    text-align: center;
    color: #000000;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-shadow: 0 8px 22px rgba(0, 0, 0, .35)
}

/* ===== FLIP CARDS ===== */
.flip-section {
    position: relative;
    padding: clamp(32px, 7vw, 72px) 0
}

.flip-wrap {
    width: 100%;
    max-width: var(--container, 1200px);
    margin-inline: auto;
    padding: 0 clamp(16px, 3vw, 24px)
}

.flip-grid {
    display: grid;
    gap: clamp(16px, 2.6vw, 28px);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.flip-card {
    perspective: 1200px;
    position: relative;
    isolation: isolate;
    height: 360px;
    margin-bottom: 0;
    /* default (desktop) */
}

/* tablet and down */
@media (max-width: 980px) {
    .flip-card {
        margin-bottom: 24px;
    }
}

/* mobile */
@media (max-width: 640px) {
    .flip-card {
        margin-bottom: 60px;
    }
}


.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1)
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner,
.flip-card.is-flipped .flip-inner {
    transform: rotateY(180deg)
}

.flip-face {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .28)
}

.flip-front {
    position: relative;
    display: grid;
    place-items: end center;
    background: #000;
    height: 360px;
}

.flip-front::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: brightness(.8);
    transform: scale(1.02);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
    z-index: 0
}

.flip-card:hover .flip-front::before,
.flip-card.is-flipped .flip-front::before {
    transform: scale(1.06)
}

.front-inner {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 22px;
    text-align: center;
    text-shadow: 0 6px 20px rgba(0, 0, 0, .5);
    display: grid;
    justify-items: center;
    gap: .5rem
}

.front-inner .icon {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .45))
}

.front-inner h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(1.05rem, 1.9vw, 1.6rem)
}

.flip-back {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    height: 360px;
}

/*.back-inner {*/
/*    padding: 20px 18px 18px*/
/*}*/

.back-inner {
    padding: 20px 20px 20px;
    align-items: center;
    align-content: center;
    text-align: center;
}

.flip-back p {
    margin: .2rem 0;
    color: #111827;
    line-height: 1.65;
    font-size: clamp(1rem, 1.5vw, 2.5rem);
    font-family: 'Playfair Display', serif;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* Flip responsive */
@media (max-width:980px) {
    .flip-grid {
        grid-template-columns: 1fr 1fr
    }

    .flip-card {
        height: 320px
    }

    .flip-card p {
        font-size: 22px;
    }
}

@media (max-width:640px) {
    .flip-grid {
        grid-template-columns: 1fr
    }

    .flip-card {
        height: 300px
    }

    .flip-card p {
        font-size: 20px;
    }

    .front-inner .icon {
        width: 180px;
        height: auto;

    }


    .front-inner h3 {
        font-size: 25px;
    }
}

/* ===== VENUES (tabs + slider) ===== */
.venues .tabs {
    display: grid;
    gap: 16px
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: #69c0e9;
    border-radius: 999px;
    padding: 6px
}

.tab-btn {
    background: transparent;
    border: 0;
    border-radius: 999px;
    padding: .7rem 1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.tab-btn[aria-selected="true"] {
    background: rgba(255, 255, 255, .95);
    color: #0b1020;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18)
}

.tab-panel {
    margin-top: 8px
}

.venue {
    display: grid;
    gap: 16px
}

.venue-img-slider {
    position: relative;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .15)
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform .5s ease
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .75);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: .2rem .65rem;
    border-radius: 50%
}

.slider-btn.prev {
    left: 10px
}

.slider-btn.next {
    right: 10px
}

.chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .95);
    color: #111;
    padding: .35rem .7rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.venue-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .1)
}

.venue-card .serif {
    /* font-family: 'Playfair Display', serif; */
    margin: .3rem 0 .6rem;
    font-size: 30px;
}

.kv {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .35rem
}

.kv li {
    margin-bottom: 5px;
}

.kv small {
    display: block;
    font-size: .95rem;
    color: #2d2d2d;
    letter-spacing: .04em;
    text-transform: uppercase
}

.kv strong {
    font-size: .98rem
}

.muted {
    color: #2d2d2d;
}

@media (max-width:980px) {
    .tab-btn {

        font-size: 15px;
    }

    .venue-img-slider {
        height: 380px
    }

    .venue-card .serif {

        font-size: 25px;
    }

}

@media (max-width:640px) {
    .tab-list {
        grid-template-columns: 1fr 1fr 1fr
    }

    .venue-img-slider {
        height: 300px
    }

    .venue-card .serif {

        font-size: 22px;
    }
}

/* ===== REVIEWS MARQUEE ===== */
.reviews-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-block: 12px
}

.reviews-viewport::before,
.reviews-viewport::after {
    content: "";
    position: absolute;
    inset-block: 0;
    width: clamp(24px, 6vw, 70px);
    pointer-events: none;
    z-index: 1
}

.reviews-viewport::before {
    left: 0;
    background: linear-gradient(90deg, #f7f7f8, rgba(247, 247, 248, 0))
}

.reviews-viewport::after {
    right: 0;
    background: linear-gradient(-90deg, #f7f7f8, rgba(247, 247, 248, 0))
}

.reviews-track {
    --loopDistance: 1000;
    --duration: 30s;
    display: flex;
    align-items: stretch;
    gap: clamp(14px, 2vw, 20px);
    will-change: transform;
    padding-block: 6px;
    animation: reviews-scroll var(--duration) linear infinite
}

.reviews-track:hover,
.reviews-track:focus-within {
    animation-play-state: paused
}

@keyframes reviews-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-1px * var(--loopDistance)))
    }
}

.review-card {
    background: #f7f7f8;
    flex: 0 0 clamp(280px, 30vw, 420px);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: grab
}

.review-card:active {
    cursor: grabbing
}

.review-card:hover,
.review-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
    outline: none
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.meta {
    min-width: 0
}

.name {
    font-weight: 700;
    margin: 0;
    color: #111;
    font-size: 1rem
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 999px;
    padding: 2px 10px;
    font-size: .78rem;
    font-weight: 700
}

.review-stars {
    display: inline-flex;
    gap: 4px;
    margin: 6px 0 8px
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #f5a524
}

.review-text {
    font-size: clamp(.96rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0 0 12px
}

@media (prefers-reduced-motion:reduce) {
    .reviews-track {
        animation: none !important
    }
}

/* ===== FOOTER ===== */
.gb-footer {
    --bg: #0f172a;
    --fg: #e5e7eb;
    --muted: #94a3b8;
    --card: #111827;
    --border: rgba(255, 255, 255, .08);
    background: var(--bg);
    color: var(--fg);
    margin-top: 56px;
    border-top: 1px solid #e5e7eb1a;
    font-size: .98rem
}

.gb-footer .gbf-container {
    max-width: 1200px;
    padding: 0 clamp(16px, 4vw, 24px);
    margin: 0 auto
}

.gb-footer .gbf-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: clamp(18px, 2vw, 28px);
    padding: clamp(28px, 4vw, 44px) 0
}

@media (max-width:960px) {
    .gb-footer .gbf-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:600px) {
    .gb-footer .gbf-grid {
        grid-template-columns: 1fr
    }
}

.gb-footer .gbf-brand img {
    width: 180px;
    height: auto;
    display: block;
    filter: brightness(1) contrast(1.1);
    margin-bottom: .6rem
}

.gb-footer .gbf-blurb {
    color: var(--muted);
    line-height: 1.6;
    margin: .2rem 0 .8rem
}

.gb-footer .gbf-heading {
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: .2rem 0 .8rem
}

.gb-footer .gbf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem
}

.gb-footer .gbf-links a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent
}

.gb-footer .gbf-links a:hover,
.gb-footer .gbf-links a:focus-visible {
    color: var(--fg);
    border-bottom-color: var(--border);
    outline: none
}

.gb-footer .gbf-contact a {
    color: var(--fg);
    text-decoration: none
}

.gb-footer .gbf-contact a:hover,
.gb-footer .gbf-contact a:focus-visible {
    text-decoration: underline
}

.gb-footer .gbf-social {
    list-style: none;
    padding: 0;
    margin: .7rem 0 0;
    display: flex;
    gap: .6rem
}

.gb-footer .gbf-social-link {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.gb-footer .gbf-social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--fg);
    opacity: .9
}

.gb-footer .gbf-social-link:hover,
.gb-footer .gbf-social-link:focus-visible {
    transform: translateY(-2px);
    background: #1f2937;
    border-color: #ffffff1a;
    outline: none
}

.gb-footer .gbf-legal {
    border-top: 1px solid var(--border);
    background: #0b1220
}

.gb-footer .gbf-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 16px 0
}

.gb-footer .gbf-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: .9rem
}

.gb-footer .gbf-legal-links a {
    color: var(--muted);
    text-decoration: none
}

.gb-footer .gbf-legal-links a:hover,
.gb-footer .gbf-legal-links a:focus-visible {
    color: var(--fg);
    text-decoration: underline;
    outline: none
}

.gb-footer .gbf-muted {
    color: var(--muted)
}


.floating-icons {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    padding: 0;
    margin: 0;
}

.floating-icons a {
    background-color: #1a055d;
    /* background-color: #0b241a; */
    color: white;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #25D366;
    /* WhatsApp green */
}

.floating-icons a:nth-child(2):hover {
    background-color: #ea4335;
    /* Gmail red */
}

.floating-icons a:nth-child(3):hover {
    background-color: #e4405f;
    /* Instagram pink */
}


/* Container */
.enqry-button {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: var(--container, 1200px);
    margin: clamp(16px, 4vw, 32px) auto;
    padding: clamp(14px, 3.2vw, 22px);
    background: var(--cta-bg);
    color: var(--cta-fg);
    border-radius: var(--radius, 18px);
    box-shadow: var(--shadow, 0 12px 36px rgba(2, 6, 23, .18));
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: saturate(1.2) blur(4px);
}

/* Copy */
.enqry-content {
    min-width: 0;
}

.enqry-title {
    margin: 0 0 4px;
    font-weight: 800;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.2;
}

.enqry-sub {
    margin: 0;
    opacity: .95;
    font-size: clamp(.9rem, 1.8vw, 1rem);
}

/* Button (re-uses your .btn style; add small tweaks here) */
.enqry-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
    background: #ffffff;
    /* override to white for contrast */
    color: var(--ink, #0b1020);
    /* your primary text color */
    box-shadow: 0 10px 26px rgba(255, 255, 255, .18);
    padding: .9rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.enqry-cta:hover {
    background-color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.enqry-cta i {
    font-size: 1.05em;
    line-height: 1;
}

/* Responsive */
@media (max-width: 980px) {
    .enqry-button {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .enqry-cta {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .enqry-cta {
        width: 100%;
    }
}