:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-primary-blue: #0085ff;
    --color-secondary-blue: #00d1ff;
    --color-text-primary: #1b1b1b;
    --color-text-secondary: #4a4a4a;
    --color-background-light: #f1f8ff;
    --color-background-gradient: linear-gradient(180deg, #f8fbff 0%, rgba(250, 251, 251, 0) 100%);
    --font-main: 'Be Vietnam Pro', sans-serif;
    --font-heading: 'Lora', serif;
    --font-special: 'Playfair Display', serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text-primary);
}

* {
    box-sizing: border-box;
}

.site-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    color: #f8f8f8;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
}

.btn-secondary {
    background-color: #2ecc71;
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
}

/* CSS for section section:hero */
.hero-section {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-image: url('/wp-content/themes/longvan/assets/images/banner-top.png');
    background-color: #000;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
.hero-content {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 1440px;
    height: 832px;
}
.hero-cta {
    margin-top: 715px;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('/wp-content/themes/longvan/assets/images/banner-top-mobile.png');

    }
    .hero-content {
        width: 100%;
        height: auto;
        min-height: 526px;
        padding: 0 20px;
    }
    .hero-cta {
        margin-top: 440px;
        width: 100%;
    }

    .btn {
        font-size: 18px !important;
        padding: 10px 20px !important;
    }
}




.play-icon {
    width: 40px;
    height: 40px;
}

/* CSS for section section:about */
.about-section {
    background-color: var(--color-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.about-pattern {
    position: absolute;
    top: 60px;
    right: 120px;
    width: 102px;
    height: 118px;
    z-index: 0;
}
.about-container {
    display: flex;
    gap: 24px;
    align-items: center;
}
.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 588px;
}
.about-heading {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}
.about-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-body p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: -0.27px;
    color: #111111;
    margin: 0;
}
.about-body .text-semibold {
    font-weight: 600;
}
.about-cta {
    align-self: flex-start;
}
.about-cta .play-icon {
    width: 40px;
    height: 40px;
}
.about-right {
    flex: 1;
    max-width: 588px;
}
.image-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
}
.image-grid-row {
    display: flex;
    gap: 24px;
}
.grid-image {
    width: 240px;

    border-radius: 6px;
    border: 1px solid #f8f8f8;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.05);
}
.grid-image-small {
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.stanford-logo-wrapper {
    width: 200px;
    height: 200px;
}
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-left, .about-right {
        max-width: 100%;
    }
    .about-pattern {
        display: none;
    }
    .image-grid {
        align-items: center;
    }
}
@media (max-width: 576px) {
    .about-heading {
        font-size: 32px;
    }
    .image-grid-row {
        flex-direction: column;
    }
}

/* CSS for section section:crossroads */
.crossroads-section {
    background-color: var(--color-background-light);
    padding: 60px 0;
}
.crossroads-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 68px;
}
.crossroads-heading {
    text-align: center;
    max-width: 800px;
}
.crossroads-heading h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 16px 0;
}
.crossroads-heading p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin: 0;
}
.crossroads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.card {
    background-color: var(--color-white);
    border: 1px solid #f8f8f8;
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.card:focus {
    outline: none;
}

.card-icon-wrapper {
    background-color: var(--color-background-light);
    border-radius: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icon-merged {
    position: relative;
    width: 48px;
    height: 48px;
}
.card-text h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.36px;
    margin: 0 0 8px 0;
    color: var(--color-text-primary);
}
.card-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}
.card-form p {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.card-form input[type=radio] {
    margin-right: 5px;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: auto;
    padding-top: 6px;
}
.card-link span {
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, #0085ff 0%, #00d1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.card.active {
    background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
    color: #fff !important;
}
.card.active .card-text h3 {
    color: var(--color-white);
}
.card.active .card-text p {
    color: var(--color-white);
}
.card.active .card-link {
    display: none;
}

.arrow-icon-merged {
    position: relative;
    width: 24px;
    height: 18px;
}
.arrow-icon-merged img {
    position: absolute;
    top: 0;
}
.arrow-icon-merged img:first-child { left: 6px; }
.arrow-icon-merged img:last-child { left: 0; }

.quick-register-form {
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    color: #222;
    border: 1px solid #E6E6E6;
}
.quick-register-form h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.4;
    margin: 0;
}
.quick-register-form h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    margin: 20px 0;
    color: #444;
}
.quick-register-form input[type="text"],
.quick-register-form input[type="tel"],
.quick-register-form input[type="email"] {
    border-radius: 10px !important;
    border: 1px solid #ccc !important;
}
.quick-register-form input[type="checkbox"]{
    border-radius: 5px !important;
    border: 1px solid #ccc !important;
}

.quick-register-form textarea {
    background-color: var(--color-white);
    border: 1px solid #ccc;
    padding: 12px 16px;
    font-size: 18px;
    font-family: 'Be Vietnam Pro', sans-serif;
    width: 100%;
    border-radius: 10px !important;
}

.quick-register-form .form-check {
    margin-top: 12px;
}
.quick-register-form .form-check-label, .quick-register-form .form-group label {
    color: #222 !important;
    font-size: 18px;
}
.quick-register-form .form-group label {
    font-weight: 500;
}

@media (max-width: 992px) {
    .crossroads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .crossroads-heading h2 {
        font-size: 36px;
    }
    .quick-register-form h2 {
        font-size: 36px;
    }
    .crossroads-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:benefits */
.benefits-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.benefits-pattern {
    position: absolute;
    top: 80px;
    left: 120px;
    width: 102px;
    height: 118px;
    z-index: 0;
}
.benefits-container {
    display: flex;
    gap: 24px;
    align-items: center;
}
.benefits-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 588px;
}
.video-card {
    width: 500px;
    height: 279px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.video-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.32) 100%);
}
.video-card-1 {
    background-image: url('/wp-content/themes/longvan/assets/images/video1.jpg');
}
.video-card-2 {
    height: 272px;
    background-image: url('/wp-content/themes/longvan/assets/images/video2.png');
}
.video-card .play-button, .video-card h3 {
    position: relative;
    z-index: 1;
}
.video-card .play-button {
    width: 60px;
    height: 60px;
}
.video-card h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    max-width: 460px;
    text-align: center;
}
.video-caption {
    font-size: 18px;
    color: var(--color-text-primary);
    text-align: center;
    margin: 0;
}
.benefits-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 588px;
    padding: 0 24px;
}
.benefits-right h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 18px;
    line-height: 1.7;
}
.benefits-list li img {
    width: 32px;
    height: 32px;
}
.benefits-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.btn-fullwidth {
    width: 100%;
    /*border: 3px solid var(--color-white);*/
}
@media (max-width: 1200px) {
    .benefits-container {
        flex-direction: column;
        gap: 40px;
    }
    .benefits-left, .benefits-right {
        max-width: 100%;
    }
    .benefits-pattern {
        display: none;
    }
}
@media (max-width: 576px) {
    .benefits-right h2 { font-size: 32px; }
    .video-card { width: 100%; height: 200px; }
    .video-card h3 { font-size: 20px; }
}



.videos-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.videos-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}
@media (max-width: 768px) {
    @media (max-width: 1200px) {
        .videos-section h2 { font-size: 36px; }
    }
}
.videos-container {
    display: flex;
    gap: 24px;
    /*align-items: flex-start;*/
    margin-bottom: 50px;
}
.videos-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin-top: 8px;
}
.videos-left iframe {
    width: 100% !important;
}

.videos-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 588px;
    padding: 0;
}

.videos-right h3 {
    margin-bottom: -20px;
    text-align: left;
}

@media (max-width: 1200px) {
    .videos-container {
        flex-direction: column;
        gap: 40px;
    }
    .videos-left, .videos-right {
        max-width: 100%;
    }
}

/* CSS for section section:ebook */
.ebook-section {
    position: relative;
    background-color: var(--color-background-light);
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.ebook-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    @media (max-width: 1200px) {
        .ebook-section h2 { font-size: 36px; }
    }
}

.ebook-container {
    max-width: 792px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    z-index: 2;
}
.ebook-form {
    width: 100%;
    border: 1px solid #c4e3ff;
    border-radius: 20px;
    margin: 30px 10px 50px 10px;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
    color: #fff !important;
}

.ebook-form .title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    background: linear-gradient(91deg, #bf953f 0%, #fcf6ba 23.52%, #b38728 50.22%, #fbf5b7 78.93%, #aa771c 100.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: #fff !important;
    margin: 20px 0;
}

.ebook-form .form-group {
    margin-bottom: 20px;
}

.ebook-form .form-group select {
    background-color: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    padding: 12px 16px;
    font-size: 18px;
    font-family: 'Be Vietnam Pro', sans-serif;
    width: 100%;
}

.ebook-form .form-check label {
    color: #ffffff !important;
    font-size: 16px;
}

/* CSS for section section:differentiators */
.differentiators-section {
    background: var(--color-background-gradient);
    padding-bottom: 60px;
}
.divider-wave {
    width: 100%;
}
.divider-wave img {
    width: 100%;
    display: block;
}
.differentiators-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.differentiators-heading {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.feature-card {
    background-color: var(--color-white);
    border: 1px solid #c4e3ff;
    border-radius: 20px;
    padding: 32px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
}
.feature-icon, .feature-icon-wrapper {
    width: 80px;
    height: 80px;
}
.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.feature-card p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 368px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    padding: 24px 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-number {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 800;
    font-size: 39px;
    line-height: 1.2;
    background: linear-gradient(90deg, #0085ff 0%, #00d1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 2;
    color: var(--color-black);
}
.divider-line-wrapper {
    padding: 10px 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.divider-line {
    border: none;
    height: 1.5px;
    background-color: #c4e3ff;
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .differentiators-heading { font-size: 36px; }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:process */
.process-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.process-bg-pattern-1 {
    position: absolute;
    top: 60px;
    left: 120px;
    width: 102px;
    height: 118px;
    z-index: 0;
}
.process-bg-ellipse {
    position: absolute;
    width: 442px;
    height: 448px;
    right: -100px;
    top: 100px;
    background: #0094FF;
    filter: blur(280px);
    opacity: 0.15;
    z-index: 0;
}
.process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.process-heading {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.process-heading h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
.process-heading p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
}
.process-visual {
    position: relative;
    width: 100%;
    height: 755px;
    margin-top: 40px;
}
.process-path {
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 602px;
}
.process-level {
    position: absolute;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text-primary);
}
.level-1 { top: 20px; right: 215px; }
.level-2 { top: 218px; left: 230px; }
.level-3 { top: 404px; right: 150px; }
.level-4 { top: 610px; left: 230px; }
.process-cards {
    position: relative;
    height: 100%;
}
.process-card {
    background-color: var(--color-white);
    border-radius: 24px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 35px 116px -10px rgba(154, 167, 193, 0.25);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    width: 690px;
}
.card-1 { top: 0; left: 0; }
.card-2 { top: 183px; right: 0; }
.card-3 { top: 373px; left: 0; }
.card-4 { top: 578px; right: 0; }
.p-card-icon {
    width: 68px;
    height: 68px;
    background-color: #ebf3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.p-card-icon img { width: 32px; height: 32px; }
.p-card-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 2px 0;
}
.p-card-text p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}


/* CSS for section section:process */
.process-steps {
    display: none;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}
.process-step-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05), 0px 35px 116px -10px rgba(154, 167, 193, 0.25);
}
.step-icon-wrapper {
    background-color: #ebf3ff;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}
.step-icon-wrapper img {
    width: 32px;
    height: 32px;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}
.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}
.process-cta {
    width: 100%;
}

@media (max-width: 768px) {
    @media (max-width: 1200px) {
        .process-visual { display: none; } /* Hiding complex layout on smaller screens */
        .process-steps {
            display: flex;
        }
        .process-container { gap: 20px; }
        .process-heading h2 { font-size: 36px; }
    }
}

/* CSS for section section:contact */
.contact-section {
    position: relative;
    background-image: url('/wp-content/themes/longvan/assets/images/banner-bottom.png');
    background-color: #000;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 44.71%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}
.contact-container {
    max-width: 792px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    z-index: 2;
}
.contact-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-heading h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4;
    margin: 0;
    background: linear-gradient(91deg, #bf953f 0%, #fcf6ba 23.52%, #b38728 50.22%, #fbf5b7 78.93%, #aa771c 100.01%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.contact-heading p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--color-white);
    margin: 0;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 18px;
    color: var(--color-white);
}

.card-form .form-group label {
    font-size: 14px;
}
.card-form .form-group label.form-label {
    margin: 10px 0 0 0;
    font-weight: bold;
}

.card-form .form-check-label {
    color: #fff !important;
}

.card-form button {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 16px;
}

.form-group .required {
    color: var(--color-white);
}
.form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="email"] {
    background-color: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    padding: 12px 16px;
    font-size: 18px;
    font-family: 'Be Vietnam Pro', sans-serif;
    width: 100%;
}

.card-form .form-group input[type="text"], .card-form .form-group input[type="tel"], .card-form .form-group input[type="email"]  {
    padding: 6px 8px;
    font-size: 14px;
}

.form-group input::placeholder {
    color: #d1d5db;
}
.contact-form .btn, .wpcf7-form .btn {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .contact-section {
        width: 100%;
    }
    .contact-heading h2 { font-size: 30px; }
    .contact-heading p { font-size: 18px; }
}

.modal-backdrop {
    z-index: 1;
}

.modal-dialog {
    max-width: 800px;
}

.modal-body {
    position:relative;
    padding:0px;
}
.btn-close {
    position:absolute;
    right:20px;
    top:20px;
}
.modal-content .video-desc {
    padding: 20px;
}

.doorModal .modal-content {
    padding:20px;
    background: linear-gradient(90deg, var(--color-primary-blue) 0%, var(--color-secondary-blue) 100%);
    color: #fff;
}
.doorModal .modal-header, .doorModal .modal-footer {
    border: none;
    padding: 0;
}

.doorModal .btn-primary {
    background: linear-gradient(90deg, #666 0%, #333 100%);
}

/* Move reCAPTCHA v3 badge to the left */

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

#btn-back-to-home {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 15px 15px !important;
    z-index: 999;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px 18px !important;;
    z-index: 999;
}