.aivah-scta-container {
    width: 100vw;
    height: 100vh; /* Default height, controllable via Elementor */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden; /* Prevent scrolling issues with GSAP pin */
}

/* Background Layer */
.aivah-scta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Initially hidden / scaled for GSAP */
    opacity: 0;
    transform: scale(2.5);
    will-change: transform, opacity;
}

.aivah-scta-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.aivah-scta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content Layer */
.aivah-scta-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.aivah-scta-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

/* Elements */
.aivah-scta-logo {
    margin-bottom: 20px;
}

.aivah-scta-logo svg {
    width: 80px; /* Default size */
    height: auto;
    display: block;
}

.aivah-scta-logo svg path,
.aivah-scta-logo svg polygon,
.aivah-scta-logo svg rect {
    fill: #000000; /* Default color based on screenshot */
}

.aivah-scta-heading {
    font-size: 42px;
    font-weight: 500;
    margin: 0 0 20px 0;
    color: #000000; /* Default based on screenshot */
    font-family: serif;
}

.aivah-scta-divider {
    width: 60px;
    height: 2px;
    background-color: #000000;
    margin: 0 auto 20px auto;
}

.aivah-scta-subheading {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.aivah-scta-btn {
    display: inline-block;
    background-color: #000000; /* Default dark burgundy */
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.aivah-scta-btn:hover {
    background-color: #000000;
    color: #fff;
}

/* Elementor Editor Visibility Override */
body.elementor-editor-active .aivah-scta-bg-wrapper,
body.elementor-editor-active .aivah-scta-content-inner,
body.elementor-editor-active .aivah-scta-content-inner > * {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: none !important;
}
