@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    background-color: #020617;
    color: #f8fafc;
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: rgba(16, 185, 129, 0.3);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-size: 0.875rem;
    color: #888;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #AAFE01;
}

.nav-logo {
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-button {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #AAFE01;
    border-color: #AAFE01;
    color: #fff;
}

/* Section Wrapper */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.padding-global {
    width: 100%;
}

.section-hero-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* 0.xyz Video Bg details */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.video-holder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    width: 100vw;
    height: 140vh;
    /* Scaled like 0.xyz */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Bleed screen slightly */
    mix-blend-mode: screen;
}

/* Emulates the radial fade overlay for the 0.xyz video edges */
.overlay-center {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 6, 23, 0.8) 60%, #020617 100%);
    z-index: 2;
}

/* Logo SVG */
.logo-mark {
    width: 60px;
    height: 80px;
    margin-bottom: 2rem;
}

/* Typography mirroring 0.xyz style */
.heading-style-h1 {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin: 0 0 1.5rem 0;
}

/* Specifically mimicking the shiny gradient from 0.xyz text */
.text-color-gradient {
    background-image: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-size-large {
    font-size: clamp(1.125rem, 1.5vw, 1.35rem);
    line-height: 1.5;
    color: #94a3b8;
    margin: 0 auto 3rem auto;
    max-width: 600px;
    font-weight: 400;
}

/* Main CTA Button */
.main-button {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    padding: 1rem 3rem;
    color: #AAFE01;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-button:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #AAFE01;
    transform: scale(1.02);
}

.main-button:active {
    transform: scale(0.98);
}

.button-text-wrap {
    display: flex;
    align-items: center;
}

/* Emulating entrance reveal animations simply */
.logo-mark {
    animation: fadeUp 1s ease 0.1s both;
}

.hero-heading-wrap {
    animation: fadeUp 1s ease 0.3s both;
}

.hero-paragraph-wrap {
    animation: fadeUp 1s ease 0.5s both;
}

.hero-button-wrap {
    animation: fadeUp 1s ease 0.7s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted Partners (Clients) Section */
.padding-section-large {
    padding-top: 0rem;
    padding-bottom: 12rem;
}

.is-bottom-2rem-tablet {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.section-clients-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s ease 0.9s both;
    /* Delay slightly more than hero button */
}

.tag {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.clients-logos-wrap {
    width: 100%;
    max-width: 900px;
}

.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.clinet-logo {
    max-height: 2.5rem;
    width: auto;
    max-width: 150px;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.clinet-logo:hover {
    opacity: 0.9;
}

/* Specific filter handling for the Wikimedia SVGs (AWS, Azure, GCP usually have colors) 
   Convert them to sleek monochrome to match 0.xyz design styling. */
.custom-filter-light {
    filter: grayscale(100%) brightness(200%) contrast(120%);
}

.custom-filter-light:hover {
    filter: grayscale(0%) brightness(100%) contrast(100%);
}

/* CTA Section */
.is-bottom-0 {
    padding-bottom: 0;
}

.cta-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 0rem;
    position: relative;
    z-index: 50;
}

.heading-style-h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

/* Lottie Graphic Overlays */
.cta-background-wrap {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    border-radius: 2rem;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    position: relative;
    margin-top: 5rem;
}

.lottie-animation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    /* Fade out slightly so text pops */
}

/* Theme blending */
.override-light-theme {
    /* Originally #999, make it slightly brighter and tint towards slate/emerald */
    filter: brightness(1.2) sepia(1) hue-rotate(120deg) saturate(0.5);
}

.is-desktop {
    display: block;
}

.is-mobile {
    display: none;
}

@media (max-width: 768px) {
    .is-desktop {
        display: none;
    }

    .is-mobile {
        display: block;
    }

    .clients-logo-grid {
        gap: 2rem;
    }
}

.overlay-left,
.overlay-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.overlay-left {
    left: 0;
    background: linear-gradient(to right, #020617 0%, transparent 100%);
}

.overlay-right {
    right: 0;
    background: linear-gradient(to left, #020617 0%, transparent 100%);
}

/* Utility Classes used in index.html */
.w-full {
    width: 100%;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Portfolio Scroll Animated Section */
.section-portfolio {
    position: relative;
    width: 100%;
}

.portfolio-heading-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-bottom: 2rem;
}

.graphic-wrapper {
    position: relative;
    width: 100%;
}

.holder {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trigger {
    height: 500vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: -1;
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(70vw, 400px);
    height: min(70vw, 400px);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    background: #020617;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.15);
}

.video-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 60px 20px #020617;
    pointer-events: none;
}

.item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    z-index: 5;
    will-change: transform, opacity;
}

.portfolio-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.5rem;
    padding: 2.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: #f8fafc;
}

.card-tag-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-dot {
    width: 8px;
    height: 8px;
    background: #AAFE01;
    border-radius: 50%;
    box-shadow: 0 0 10px #AAFE01;
}

.portfolio-card .tag {
    color: #AAFE01;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0;
}

.portfolio-card p {
    color: #94a3b8;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.indicator-wrap {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-progress {
    height: 100%;
    background: #AAFE01;
    width: 0%;
}

@media (max-width: 768px) {
    .item {
        width: 280px;
    }

    .portfolio-card {
        padding: 1.25rem;
    }
}

/* AI Approach Section (Venn Diagram) */
.section-approach {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.approach-content {
    padding-right: 2rem;
}

.approach-content .tag {
    color: #AAFE01;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.text-size-regular {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

/* Outline Button */
.outline-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.outline-button:hover {
    border-color: #AAFE01;
    color: #AAFE01;
    background: rgba(16, 185, 129, 0.05);
}

.outline-button:hover svg {
    transform: translateX(4px);
}

/* Graphic Container spanning 50% */
.approach-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.approach-graphic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.venn-diagram {
    position: relative;
    width: 320px;
    height: 320px;
    z-index: 2;
}

.venn-circle {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, transparent 60%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.venn-circle span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #f8fafc;
    text-transform: uppercase;
}

/* Coordinates to create the exact Venn overlap */
.circle-top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-top span {
    transform: translateY(-25px);
}

.circle-left {
    bottom: 30px;
    left: 15px;
}

.circle-left span {
    transform: translateX(-15px);
}

.circle-right {
    bottom: 30px;
    right: 15px;
}

.circle-right span {
    transform: translateX(15px);
}

/* Center Value Area */
.venn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.venn-center-content {
    margin-top: 110px;
    /* Offset the center relative to dot to sit below circles */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-dot {
    width: 5px;
    height: 5px;
    background: #AAFE01;
    border-radius: 50%;
    box-shadow: 0 0 10px #AAFE01;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2.5px;
    margin-left: -2.5px;
    z-index: 10;
}

.center-line {
    width: 1px;
    height: 60px;
    background: repeating-linear-gradient(to bottom,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.4) 3px,
            rgba(255, 255, 255, 0.4) 6px);
}

.center-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 0.05em;
    margin-top: 8px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        padding-bottom: 3rem;
    }

    .approach-graphic {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Footer Section */
.ahrah-footer-wrapper {
    position: relative;
    width: 100%;
    margin-top: 5rem;
    overflow: hidden;
}

.ahrah-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 5% 2rem;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, rgba(2, 6, 23, 1) 100%);
}

.footer-background-curve {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 -20px 40px rgba(16, 185, 129, 0.05);
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-left,
.footer-center,
.footer-right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #AAFE01;
}

.mobile-copyright {
    display: block;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }

    .footer-left {
        justify-content: flex-start;
        width: 33.333%;
    }

    .footer-center {
        width: 33.333%;
    }

    .footer-right {
        justify-content: flex-end;
        width: 33.333%;
    }

    .mobile-copyright {
        display: none;
    }
}

.explore-projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8.5rem;
    margin-bottom: 18rem;
}

@media (max-width: 1024px) {
    .explore-projects {
        gap: 3.5rem;
        margin-bottom: 10rem;
    }
}

@media (max-width: 425px) {
    .explore-projects {
        gap: 35rem;
        margin-bottom: 0rem;
    }
}

/* --- Contact Us Modal Styles --- */
.contact-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 1rem;
}

.contact-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-container {
    width: 100%;
    max-width: 950px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.contact-modal-backdrop.active .contact-modal-container {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.contact-modal-content {
    display: flex;
    flex-direction: row;
}

.contact-modal-left {
    flex: 1;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-modal-right {
    flex: 1.2;
    padding: 4rem;
}

.modal-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 600;
}

.modal-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 500;
    color: #f8fafc;
    margin: 0 0 3rem 0;
    letter-spacing: -0.03em;
}

.modal-info-group {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.info-link {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
    width: fit-content;
}

.info-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #AAFE01;
    transition: width 0.3s ease;
}

.info-link:hover {
    color: #AAFE01;
}

.info-link:hover::after {
    width: 100%;
}

.contact-modal-right form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #AAFE01;
}

/* Pseudo reCAPTCHA */
.form-recaptcha-wrap {
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.recaptcha-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #f8fafc;
    user-select: none;
    position: relative;
}

.recaptcha-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.recaptcha-checkbox:hover input~.checkmark {
    border-color: rgba(255, 255, 255, 0.5);
}

.recaptcha-checkbox input:checked~.checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid #AAFE01;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.recaptcha-checkbox input:checked~.checkmark:after {
    display: block;
}

.recaptcha-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-logo-wrap img {
    margin-bottom: 4px;
}

.recaptcha-links {
    font-size: 0.5rem;
    color: #64748b;
    text-align: center;
    line-height: 1.2;
}

.submit-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 1.25rem 2rem;
    color: #f8fafc;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #AAFE01;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-modal-content {
        flex-direction: column;
    }

    .contact-modal-left,
    .contact-modal-right {
        padding: 2.5rem;
    }

    .contact-modal-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .modal-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .contact-modal-container {
        max-height: 90vh;
        overflow-y: auto;
    }
}