*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #110c3a;
    --purple: #8f74ff;
    --white: #ffffff;
    --gutter: 40px;
    --max-w: 1648px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 12.5px;
    border: 2px solid;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    background: transparent;
}

.btn--white {
    border-color: var(--white);
    color: var(--white);
    transition: all 0.2s ease;
}

.btn--white:hover,
.btn--white:focus {
    border-color: var(--white);
    color: var(--purple);
    background-color: var(--white);
}

.btn--purple-outline {
    border-color: var(--purple);
    color: var(--purple);
    transition: all 0.2s ease;
}

.btn--purple-outline:hover,
.btn--purple-outline:focus {
    border-color: var(--purple);
    color: var(--white);
    background-color: var(--purple);
}

.btn--purple-fill {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
}

/* ── HEADER ──────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--gutter);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(17, 12, 58, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-logo {
    height: 37px;
    width: auto;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--navy);
}

.hero__bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__bg iframe.is-playing {
    opacity: 1;
}

.hero__bg .video--1 {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    display: block;
    z-index: 1;
}

.hero__bg .video--1.is-playing {
    opacity: 0.95;
}

.hero__bg .video--2 {
    width: 100vw;
    height: 177.77vw; /* 9:16 Aspect Ratio */
    min-height: 100vh;
    min-width: 56.25vh;
    display: block;
}

@media (max-aspect-ratio: 1/1) {
    .hero__bg .video-desktop {
        display: none;
    }
    .hero__bg .video-mobile {
        display: block;
    }
}

.hero__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: min(67%, 1163px);
    z-index: 1;
}

.hero__tagline {
    position: relative;
    z-index: 1;
    font-size: clamp(18px, 1.74vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
}

.hero__tagline .accent {
    color: var(--purple);
}

.hero__arrow {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
    width: 22px;
    opacity: 0.9;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) rotate(90deg) translateX(0); }
    50% { transform: translateX(-50%) rotate(90deg) translateX(6px); }
}

/* ── ABOUT INTRO ─────────────────────────────────── */
.about-intro {
    background: var(--navy);
    padding: 120px var(--gutter);
}

.about-intro p {
    max-width: var(--max-w);
    margin-inline: auto;
    font-size: clamp(24px, 3.76vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
}

/* ── ABOUT DETAIL ────────────────────────────────── */
.about-detail {
    background: var(--navy);
    padding: 0 var(--gutter) 120px;
}

.about-detail__inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 758fr 642fr;
    gap: 60px;
    align-items: start;
}

.about-detail__text {
    border-left: 1px solid var(--purple);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-detail__text h2 {
    font-size: clamp(20px, 2.31vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}

.about-detail__photo {
    border-radius: 2.5px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-width: 642px;
    position: relative;
}

.about-detail__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-detail__photo img.active {
    opacity: 1;
}

/* ── TRUST QUOTE ─────────────────────────────────── */
.trust-quote {
    background: var(--navy);
    padding: 120px var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
    background-image: url('hero-bg.png');
    background-position: 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.trust-quote__icon {
    width: 77px;
    height: auto;
}

.trust-quote h2 {
    max-width: 1098px;
    font-size: clamp(24px, 3.76vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
}

/* ── SERVICES ────────────────────────────────────── */
.services {
    background: var(--navy);
    padding: 80px var(--gutter) 120px;
}

.services__header {
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.services__label {
    font-size: 18px;
    font-weight: 500;
    color: var(--purple);
    line-height: 1.4;
}

.services__title {
    font-size: clamp(24px, 3.76vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
}

.services__grid {
    margin-inline: auto;
    display: flex;
    gap: 40px 20px;
    flex-wrap: wrap;
}

.service-card {
    border-left: 1px solid var(--purple);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 295px;
}

.service-card__icon {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: left;
}

.service-card__name {
    font-size: 18px;
    font-weight: 500;
    color: var(--purple);
    line-height: 1.4;
}

.service-card__desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
}

/* ── COMING SOON ─────────────────────────────────── */
.coming-soon {
    background: var(--navy);
    padding: 120px var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
    background-image: url('hero-bg.png');
    background-position: 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.coming-soon__icon {
    width: 77px;
    height: auto;
}

.coming-soon h2 {
    font-size: clamp(24px, 3.76vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
}

/* ── CONTACT ─────────────────────────────────────── */
.contact {
    background: var(--navy);
    padding: 120px var(--gutter);
}

.contact__inner {
    max-width: 976px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.contact__heading {
    font-size: clamp(24px, 3.76vw, 65px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    text-align: center;
}

.contact__heading .accent {
    color: var(--purple);
}

.contact__subtext {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    text-align: center;
}

/* ── FORM ────────────────────────────────────────── */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-bottom-color: var(--purple);
}

.form-textarea {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 14px;
    width: 100%;
    min-height: 92px;
    outline: none;
    resize: vertical;
}

.form-textarea:focus {
    border-color: var(--purple);
}

.form-input:-webkit-autofill,
.form-textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--navy) inset;
    -webkit-text-fill-color: var(--white);
}

.form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    cursor: pointer;
}

.form-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border: 1px solid var(--white);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
}

.form-checkbox:checked {
    background: var(--purple);
    border-color: var(--purple);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--white);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-mandatory {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

.form-submit {
    width: auto;
    display: inline-block;
    margin: 20px auto 0 auto;
}

.gform_wrapper {
    width: 100%;
}

#gform_1 .gfield_checkbox .gform-field-label {
    color: inherit !important;
}

/* 1. General Form Container & Labels */
#gform_1 .gfield_label {
    font-family: 'Manrope', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #ffffff !important; /* White labels */
    margin-bottom: 8px !important;
}

/* 2. Input and Textarea Styling (Minimalist Border) */
#gform_1 input[type="text"],
#gform_1 input[type="email"],
#gform_1 input[type="tel"],
#gform_1 input[type="url"],
#gform_1 textarea {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ffffff !important; /* White bottom border */
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 18px !important;
    padding: 10px 0 !important;
    width: 100% !important;
}

#gform_1 textarea {
    border: 1px solid #ffffff !important;
    min-height: 92px;
    padding: 10px !important;
}

/* Placeholder color */
#gform_1 input::placeholder,
#gform_1 textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 3. Field Spacing */
#gform_1 .gfield {
    margin-bottom: 27px !important; /* Matching the gap from the above form */
}

/* 4. Submit Button Styling */
#gform_1 .gform_footer input[type="submit"],
#gform_1 .gform_button {
    background-color: #8f74ff !important; /* Purple color from above */
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 35px !important;
    border: 2px solid #8f74ff !important;
    border-radius: 12.5px !important;
    cursor: pointer;
    display: block !important;
    margin: 20px auto 0 !important; /* Centered like the above form */
    width: auto !important;
    height: auto !important;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

/* 5. Hide unnecessary descriptions if they exist */
#gform_1 .gfield_description {
    color: rgba(255, 255, 255, 0.6) !important;
}

.gform-theme--foundation .gform_fields {
    gap: 10px 0 !important;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    padding: 60px var(--gutter) 40px;
}

.footer__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__info {
    width: 100%;
    display: grid;
    justify-content: flex-start;
    gap: 35px;
}

.footer__info2 {
    width: 100%;
    display: grid;
    justify-content: end;
	gap: 35px;
	
}

.footer__brand {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.footer__address {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.footer__address2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.footer__contacts {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 4px;
    align-self: flex-end;
}

.footer__contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.257px solid var(--white);
    border-radius: 6.286px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.footer__contact-btn:hover {
    border-color: var(--purple);
}

.footer__contact-btn img {
    height: 18px;
    width: auto;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--purple);
    margin-bottom: 56px;
}

.footer__attribution {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-align: right;
    line-height: 1;
}

.footer__attribution a {
    text-decoration: underline;
}

/* ── FOOTER LOGO ─────────────────────────────────── */
.footer-logo {
    background: var(--navy);
    padding: 40px var(--gutter) 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ── SECTION DIVIDERS (subtle) ───────────────────── */
.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    max-width: var(--max-w);
    margin-inline: auto;
}



.site-main {
    padding-top: 100px;
}

.entry-content {
    padding: 120px 0;
}

.entry-content a {
    color: var(--purple);
}


/* ── ANIMATIONS ──────────────────────────────────── */
.animate-up {
    opacity: 0;
    translate: 0 40px;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), translate 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.in-view {
    opacity: 1;
    translate: 0 0;
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade.in-view {
    opacity: 1;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1300px) {
    .services__grid {
    grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
    --gutter: 32px;
    }

    .about-detail__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    }
}

@media (max-width: 860px) {
    .about-detail__inner {
    grid-template-columns: 1fr;
    }

    .about-detail__photo {
    max-width: 100%;
    }

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

@media (max-width: 640px) {
    :root {
    --gutter: 20px;
    }

    .site-header {
    height: 72px;
    padding-inline: 20px;
    }

    .header-logo {
    height: 28px;
    }

    .btn {
    padding: 12px 24px;
    font-size: 14px;
    }

    .about-intro {
    padding: 72px var(--gutter);
    }

    .about-detail {
    padding: 0 var(--gutter) 72px;
    }

    .about-detail__text {
    gap: 48px;
    }

    .trust-quote {
    padding: 80px var(--gutter);
    gap: 40px;
    }

    .services {
    padding: 60px var(--gutter) 80px;
    }

    .services__header {
    margin-bottom: 48px;
    }

    .services__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .coming-soon {
    padding: 80px var(--gutter);
    gap: 40px;
    }

    .contact {
    padding: 80px var(--gutter);
    }

    .contact__inner {
    gap: 40px;
    }

    .form-meta {
    flex-direction: column;
    align-items: flex-start;
    }

    .footer__top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    }

    .footer__contacts {
        align-self: start;
    }

    .hero__tagline {
    padding-inline: 24px;
    }
}