/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --container-padding: 5rem;
    --container-width: 1080px;

    --primary-navy-blue: #0F172A;
}

.nav-bar {
    position: fixed;
    
}
/* Global Reset for Components */
.pa-section {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.pa-section * {
    box-sizing: border-box;
}

/* =========================================
   HERO SECTION
   ========================================= */
.pa-hero {
    height: 100vh;
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    display: flex;
    align-items: center;
    /* Uses linear gradient for the dark overlay, adjusting the image based on standard placeholder */
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)),
        url('https://images.primeagile.com/dreamhomesbymj_com/image/12951/photo-1512917774080-9991f1c4c750_SRC-LG_W1200XH800.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pa-hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.pa-hero-content {
    max-width: 820px;
    color: #ffffff;
}

/* =========================================
   HERO ENTRANCE ANIMATIONS
   ========================================= */
.pa-hero-content>* {
    opacity: 0;
    transform: translateY(20px);
}

.is-loaded .pa-hero-content .pa-badge {
    animation: heroFadeInDown 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.2s;
}

.is-loaded .pa-hero-content .pa-hero-title {
    animation: heroFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.4s;
}

.is-loaded .pa-hero-content .pa-hero-subtitle {
    animation: heroFadeIn 1s ease forwards;
    animation-delay: 0.7s;
}

.is-loaded .pa-hero-content .pa-hero-buttons {
    animation: heroFadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.9s;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.pa-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(23, 162, 183, 0.35);
    /* Teal transparent */
    border: 1px solid rgba(23, 162, 183, 0.6);
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.pa-hero-title {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.pa-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e2e8f0;
}

.pa-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   HERO WELCOME ANIMATIONS (CSS-ONLY)
   ========================================= */
@keyframes paWelcomeFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pa-badge,
.pa-hero-title,
.pa-hero-subtitle,
.pa-hero-buttons {
    animation: paWelcomeFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.pa-badge {
    animation-delay: 0.2s;
}

.pa-hero-title {
    animation-delay: 0.4s;
}

.pa-hero-subtitle {
    animation-delay: 0.6s;
}

.pa-hero-buttons {
    animation-delay: 0.8s;
}

.pa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pa-btn-primary {
    background-color: #17a2b7;
    /* Primary Brand Teal */
    color: #ffffff;
    border: none;
}

.pa-btn-primary:hover {
    background-color: #138496;
    color: #ffffff;
    transform: scale(1.05)
}

.pa-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pa-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    :root {
        --container-padding: 3rem 1.25rem;
    }

    .pa-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .pa-hero-title {
        font-size: 2.5rem;
    }

    .pa-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .pa-hero-buttons {
        flex-direction: column;
    }

    .pa-btn {
        width: 100%;
    }
}

/* =========================================
   DESTINATION CARD SECTION
   ========================================= */
#primeagile__12706 {
    padding: var(--container-padding);
}

.row {
    max-width: var(--container-width);
    margin: 0 auto;
}

.pa-dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 10;
    background-color: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

@supports not (aspect-ratio: 16 / 10) {
    .pa-dest-card {
        height: 350px;
    }
}

.pa-dest-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pa-dest-card:hover .pa-dest-card-img {
    transform: scale(1.1);
}

.pa-dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.pa-dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 10;
}

.pa-dest-card-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.pa-dest-card-subtitle {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin: 0 0 20px 0;
}

.pa-dest-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 0;
    background-color: #ffffff;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.pa-dest-card-btn:hover {
    background-color: #f1f5f9;
}

/* --- Modifiers for Teal (Catalina) Theme --- */
.pa-dest-card--teal {
    background-color: #0b4d57;
}

.pa-dest-card-overlay--teal {
    background: linear-gradient(to top, rgba(11, 77, 87, 0.95) 0%, rgba(11, 77, 87, 0.3) 50%, transparent 100%);
}

.pa-dest-card-btn--teal {
    color: #0b4d57;
}

/* =========================================
   GENERIC SECTION HEADERS
   ========================================= */
#primeagile__12713 {
    padding: var(--container-padding);
    background-color: var(--primary-navy-blue);
}

.pa-feature-grid {
    max-width: var(--container-width);
    margin: 0 auto;
}

.pa-section-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 20px;
}

.pa-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    /* Dark slate */
    margin: 0 0 16px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.pa-section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    /* Medium slate */
    margin: 0;
    font-weight: 400;
}

/* Responsive Headers */
@media (max-width: 768px) {
    .pa-section-title {
        font-size: 2rem;
    }

    .pa-section-subtitle {
        font-size: 1rem;
    }

    .pa-section-header {
        margin-bottom: 40px;
    }
}

/* --- Section Header Modifiers --- */
.pa-section-title--light {
    color: #ffffff;
}

.pa-section-subtitle--light {
    color: #94a3b8;
}

.pa-cta-dark {
    background-color: var(--primary-navy-blue, #0F172A);
    padding: 64px 20px;
}

/* Center Horizontal Divider */
.pa-title-divider {
    width: 96px;
    /* equivalent to w-24 */
    height: 4px;
    /* equivalent to h-1 */
    background-color: #17a2b7;
    /* brand-500 */
    margin: 0 auto;
    border-radius: 0;
}

/* =========================================
   FEATURE CARDS GRID
   ========================================= */
.pa-feature-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pa-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pa-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #ffffff;
}

.pa-feature-card:hover {
    border-color: #17a2b7;
}

.pa-feature-card-icon {
    width: 48px;
    height: 48px;
    background-color: #17a2b7;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.pa-feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.pa-feature-card-text {
    font-size: 1rem;
    color: #94a3b8;
    /* text-slate-400 */
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   FEATURE LIST SECTION
   ========================================= */
#primeagile__12716 {
    padding: var(--container-padding)
}

.pa-feature-main-title {
    font-size: 2.25rem !important;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.pa-feature-main-title span {
    color: #17a2b7;
    /* Teal brand color */
}

.pa-feature-main-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

.pa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pa-feature-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pa-feature-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #dcf3f6;
    /* light teal brand-100 */
    color: #17a2b7;
    /* solid teal brand-600 */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pa-feature-list-item:hover .pa-feature-list-icon {
    background-color: #17a2b7;
    color: #ffffff;
}

.pa-feature-list-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.pa-feature-list-info p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

#primeagile__12734 {
    padding: var(--container-padding);
    background: #F8FAFC;
}
#primeagile__12734 h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bolder
}
/* =========================================
   CUSTOM IMAGE STYLING
   ========================================= */
#primeagile__12721 {
    display: block;
    max-width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 12px;
    border-radius: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    place-self: center;
}


@media (min-width: 768px) {
    .pa-feature-main-title {
        font-size: 2.75rem;
    }
}

/* =========================================
   STATISTICS CONTAINER & CARDS
   ========================================= */
#primeagile__12722 {
    background-color: #17a2b7;
    padding: var(--container-padding);
}

.pa-stats-container {
    padding: 80px 20px;
}

.pa-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pa-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pa-stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pa-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1;
}

.pa-stat-label {
    color: #dcf3f6;
    /* Very light teal */
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* =========================================
   TESTIMONIAL CARDS
   ========================================= */
.pa-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pa-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pa-testimonial-card {
    background-color: #ffffff;
    border-radius: 0;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pa-testimonial-card:hover {
    transform: translateY(-5px);
}

.pa-testimonial-quote {
    color: #17a2b7;
    /* brand-500 */
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.pa-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    /* slate-100 */
}

.pa-testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #dcf3f6;
    /* brand-100 */
    color: #17a2b7;
    /* brand-600 */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.pa-testimonial-name {
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.pa-testimonial-role {
    font-size: 0.875rem;
    color: #64748b;
    /* slate-500 */
    margin: 0;
}

/* =========================================
   PROCESS STEPS SECTION
   ========================================= */
.pa-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pa-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#primeagile__12727 {
    padding: var(--container-padding)
}

.pa-process-step {
    text-align: center;
}

.pa-process-icon {
    width: 64px;
    height: 64px;
    background-color: #17a2b7;
    /* Teal brand color */
    color: #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

/* Hover rotation effects tailored for each step */
.pa-process-step:hover .pa-process-icon--rotate-right {
    transform: rotate(12deg);
}

.pa-process-step:hover .pa-process-icon--rotate-left {
    transform: rotate(-12deg);
}

.pa-process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    /* Dark slate */
    margin: 0 0 12px 0;
}

.pa-process-desc {
    font-size: 1rem;
    color: #475569;
    /* Medium slate */
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   AUTHORITY CARD (WHY CHOOSE)
   ========================================= */
.pa-authority-card {
    background-color: #f8fafc;
    /* slate-50 */
    border: 1px solid #f1f5f9;
    /* slate-100 */
    border-radius: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   CUSTOM BUTTON STYLING
   ========================================= */
#primeagile__12727 {
    display: grid;
    place-items: center;
}

#primeagile__12730 button {
    margin: 3rem 1rem;
    background-color: var(--primary-navy-blue, #0F172A);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 0;
    border: none;
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    #primeagile__12730 {
        margin: 2rem 0;
        width: 100%;
        box-sizing: border-box;
    }
}

#primeagile__12730 button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.4);
}

@media (min-width: 768px) {
    .pa-authority-card {
        flex-direction: row;
        padding: 48px;
    }
}

.pa-authority-content {
    flex: 1;
    width: 100%;
}

.pa-authority-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    /* slate-900 */
    margin: 0 0 24px 0;
}

.pa-authority-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pa-authority-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    /* slate-600 */
    font-size: 1.125rem;
}

.pa-authority-item i {
    color: #17a2b7;
    /* Teal brand color */
    flex-shrink: 0;
}

.pa-authority-item strong {
    color: #334155;
    /* slate-700 */
    font-weight: 700;
}

.pa-authority-icons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.pa-authority-icons svg {
    width: 64px;
    height: 64px;
    color: #475569;
}

.pa-authority-card:hover .pa-authority-icons,
.pa-authority-icons:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.pa-faq-container {
    max-width: 900px;
    margin: 48px auto;
}

.pa-faq-container .__item {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 0;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
    transition: box-shadow 0.3s ease;
}

.pa-faq-container .__item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pa-faq-container .__header h2 {
    margin: 0;
    padding: 0;
    font-size: 100%;
    /* reset */
}

/* Base button reset for semantic HTML */
.pa-faq-container .__header button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    cursor: pointer;
    text-align: left;
    color: #17a2b7;
    /* brand-500 */
    font-family: inherit;
}

.pa-faq-container .__header button p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Add custom chevron icon that rotates */
.pa-faq-container .__header button::after {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    /* Chevron down SVG encoded */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

/* When expanded, flip the chevron */
.pa-faq-container .__header button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Accordion Content layout */
/* Using direct child selector targeting the body which is the second div */
.pa-faq-container .__item>div:nth-child(2) {
    padding: 0 24px 24px 24px;
    color: #475569;
    /* slate-600 */
    font-size: 1rem;
    line-height: 1.6;
}

.pa-faq-container .__item>div:nth-child(2) p {
    margin: 0;
}

/* =========================================
   SCHEDULE CALL FORM (primeagile__12851)
   ========================================= */
#primeagile__12731 {
    background: var(--primary-navy-blue);
    padding: var(--container-padding)
}

#primeagile__12733 {
    padding: var(--container-padding)
}

#primeagile__12851 {
    background-color: #6a6a6a29;
    /* Match screenshot dark tone */
    border-radius: 0;
    padding: 48px;
    max-width: 800px;
    margin: 64px auto;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Override .pa-cta-dark default padding/bg inside the form container */
#primeagile__12851 .pa-cta-dark {
    background-color: transparent !important;
    padding: 0 !important;
    margin-bottom: 32px !important;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"]>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

/* Make submit button span both columns */
div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"]>button {
    grid-column: 1 / -1;
    margin-top: 16px;
}

/* Provide labels for missing Interest and Location via pseudo-selectors */
div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"]>div:nth-child(3)::before {
    content: "Interest";
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"]>div:nth-child(4)::before {
    content: "Property Location";
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    /* Very light slate/white */
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] input,
div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] select {
    background-color: var(--primary-navy-blue, #0F172A);
    border: 1px solid #334155;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 1rem;
    color: #f8fafc;
    /* match screenshot off-white */
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    height: 52px;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] input::placeholder {
    color: #64748b;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] input:focus,
div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] select:focus {
    border-color: #17a2b7;
}

/* Custom styling for the Select drop down arrows */
div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8fafc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] select option {
    background-color: var(--primary-navy-blue, #0F172A);
    color: #f8fafc;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] button.submit-btn {
    background-color: #17a2b7;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    width: 100%;
}

div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] button.submit-btn:hover {
    background-color: #138496;
    transform: translateY(-2px);
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    div[data-primeagile-object="READY-TO-START-FORM-MAIN-EN"] {
        grid-template-columns: 1fr;
    }

    #primeagile__12851 {
        padding: 32px 20px;
        margin: 40px 16px;
    }
}

/* =========================================
   SCROLL-DRIVEN ANIMATIONS (Reveals)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional modifiers for different reveal styles */
.reveal--fade {
    transform: none;
}

.reveal--left {
    transform: translateX(-30px);
}

.reveal--right {
    transform: translateX(30px); 
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.4s;
}