/* Schway Valet Front-End Styles */
#schway-valet-greeting-box {
    margin-bottom: 0.5em;
    text-align: center;
    transition: all 0.3s ease;
}

#schway-valet-halt-title {
    font-size: 5em;
    font-family: 'Shelby', sans-serif !important;
    color: #222;
    margin-bottom: 0.1em;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

#schway-valet-halt-desc {
    font-size: 1.05em;
    font-family: 'Barlow', sans-serif;
    color: #555;
    margin-top: 0;
    opacity: 0.8;
}

/* 
 * We specifically override existing button styles but leave 
 * enough generic classes so it responds well to theme changes.
 */
.schway-valet-unlock-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #0075f5; 
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.schway-valet-unlock-btn:hover {
    background-color: #005bb5;
}

.schway-valet-unlock-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.schway-valet-btn-wrapper {
    margin-top: 10px;
}

/* ====================================================
   PORTAL TEMPLATE STYLES
   ==================================================== */

/* Break out of Avada's constrained wrappers */
body.page-template-page-schway-valet #main {
    padding: 0 !important;
    background-color: transparent !important;
}
body.page-template-page-schway-valet .fusion-row {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}
body.page-template-page-schway-valet #content {
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.schway-valet-portal-wrapper {
    background-color: #0b3754; /* Darker base */
    min-height: 100vh;
    padding: 60px 20px 120px; /* bottom padding leaves room for footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 1s ease;
    font-family: 'Barlow', sans-serif;
}

/* Standalone body resets — kill any residual margin/padding */
body.schway-valet-standalone {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ====================================================
   POWERED BY FOOTER
   ==================================================== */

.schway-valet-standalone-footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 20px;
    z-index: 100;
    overflow: hidden;
}

.schway-valet-powered-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.schway-valet-powered-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.schway-valet-powered-link:hover::after {
    left: 150%;
    transition: left 0.5s ease;
}

.schway-valet-powered-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.schway-valet-powered-logo {
    height: 24px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.schway-valet-powered-link:hover .schway-valet-powered-logo {
    opacity: 1;
}

.schway-valet-portal-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ====================================================
   SUNRISE TRANSITION ON UNLOCK
   Gradient lives on ::before at opacity:0.
   When .is-unlocked is toggled by JS, it fades in
   over 2.5s — like dawn breaking.
   ==================================================== */

.schway-valet-portal-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0075f5, #005bb5, #3399ff, #0075f5);
    background-size: 300% 300%;
    animation: flowGradient 8s ease infinite;
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.schway-valet-portal-wrapper.is-unlocked::before {
    opacity: 1;
}

@keyframes flowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Override text colors inside the dark portal */
.schway-valet-portal-wrapper #schway-valet-halt-title {
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
    text-align: center;
}

.schway-valet-portal-wrapper #schway-valet-halt-desc {
    color: #e0f2fe !important;
    text-align: center;
}

/* Make Gravity Forms beautiful on the dark background */
.schway-valet-portal-wrapper .gform_wrapper {
    margin-top: 16px !important;
}

/* Show labels, make them white */
.schway-valet-portal-wrapper .gform_wrapper label.gfield_label {
    color: #ffffff !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
}

/* Hide the Phone label specifically, as instructions explain what to do */
.schway-valet-portal-wrapper .gform_wrapper li#field_4_1 label.gfield_label {
    display: none !important;
}

.schway-valet-portal-wrapper .gform_wrapper .gfield_description {
    color: rgba(255,255,255,0.7) !important;
    text-align: center;
}

.schway-valet-portal-wrapper .gform_wrapper input[type="text"],
.schway-valet-portal-wrapper .gform_wrapper input[type="email"],
.schway-valet-portal-wrapper .gform_wrapper input[type="tel"],
.schway-valet-portal-wrapper .gform_wrapper textarea,
.schway-valet-portal-wrapper .gform_wrapper select {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #333 !important;
    border-radius: 6px !important;
    padding: 14px 16px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
    font-family: 'Barlow', sans-serif !important;
    transition: all 0.3s ease !important;
}

.schway-valet-portal-wrapper .gform_wrapper input[type="text"]:focus,
.schway-valet-portal-wrapper .gform_wrapper input[type="email"]:focus,
.schway-valet-portal-wrapper .gform_wrapper input[type="tel"]:focus,
.schway-valet-portal-wrapper .gform_wrapper textarea:focus {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4) !important;
    outline: none !important;
}

/* Specifically style the initial phone input to look like a clean portal entry */
.schway-valet-portal-wrapper .gform_wrapper li#field_4_1 {
    text-align: center;
}
.schway-valet-portal-wrapper .gform_wrapper input[type="tel"] {
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 1.25em !important;
    font-weight: 500;
}

/* Force all GF field containers to full width */
.schway-valet-portal-wrapper .gform_wrapper ul.gform_fields {
    width: 100% !important;
}
.schway-valet-portal-wrapper .gform_wrapper .gfield {
    width: 100% !important;
    max-width: 100% !important;
}

.schway-valet-portal-wrapper .gform_wrapper .gform_button {
    background-color: #ffffff !important;
    color: #0075f5 !important;
    min-width: 200px;
    font-weight: bold !important;
    font-size: 1.1em !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    border: none !important;
    font-family: 'Barlow', sans-serif !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.schway-valet-portal-wrapper .gform_wrapper .gform_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2) !important;
    background-color: #f0f9ff !important;
}

/* Also style the Schway Valet shortcode input to match */
.schway-valet-portal-wrapper #schway-valet-phone-lookup {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1.2em;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.schway-valet-portal-wrapper .schway-valet-unlock-btn {
    display: block;
    margin: 20px auto 0;
    min-width: 180px;
    background-color: #0075f5;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 30px;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 117, 245, 0.4);
    transition: all 0.3s ease;
}
.schway-valet-portal-wrapper .schway-valet-unlock-btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 117, 245, 0.6);
}

/* Organization Logo displayed on unlock */
.schway-valet-org-logo {
    display: block;
    max-height: 80px;
    max-width: 220px;
    margin: 0 auto 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
    animation: fadeInLogo 0.8s ease;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   RESPONSIVENESS & MOBILE OVERRIDES
   ==================================================== */

@media (max-width: 768px) {
    .schway-valet-portal-wrapper {
        padding: 40px 15px 100px;
    }

    #schway-valet-halt-title {
        font-size: 3.5em !important;
    }

    .schway-valet-org-logo {
        max-height: 60px;
        margin-bottom: 16px;
    }

    .schway-valet-portal-wrapper .gform_wrapper .gform_button {
        width: 100% !important;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    #schway-valet-halt-title {
        font-size: 2.8em !important;
    }

    #schway-valet-halt-desc {
        font-size: 0.95em;
        padding: 0 10px;
    }

    .schway-valet-portal-wrapper #schway-valet-phone-lookup {
        font-size: 1.1em;
        padding: 14px;
    }

    .schway-valet-portal-wrapper .schway-valet-unlock-btn {
        width: 100% !important;
        padding: 12px;
    }
}

/* ====================================================
   SUBMIT BUTTON — CENTERED
   text-align + margin auto avoids the display conflict
   with jQuery .hide() / .slideDown()
   ==================================================== */

.schway-valet-portal-wrapper .gform_wrapper .gform_footer,
.schway-valet-portal-wrapper .gform_wrapper .gform_page_footer {
    text-align: center !important;
    padding: 24px 0 8px !important;
}

.schway-valet-portal-wrapper .gform_wrapper .gform_button[type="submit"],
.schway-valet-portal-wrapper .gform_wrapper input.gform_button {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ====================================================
   GRAVITY FORMS MULTI-FILE UPLOADER
   Icon cards that fill with upload progress.
   ==================================================== */

/* ── Drop Zone ──────────────────────────────────────────────── */
.schway-valet-portal-wrapper .gform_fileupload_multifile .gform_drop_area {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px dashed rgba(255, 255, 255, 0.22) !important;
    border-radius: 14px !important;
    padding: 36px 24px !important;
    text-align: center !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    position: relative;
    overflow: hidden;
}

.schway-valet-portal-wrapper .gform_drop_instructions {
    display: block;
    color: rgba(255, 255, 255, 0.65) !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 14px !important;
    line-height: 1.5;
}

.schway-valet-portal-wrapper .gform_button_select_files {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    letter-spacing: 0.02em;
}

.schway-valet-portal-wrapper .gform_button_select_files:hover {
    background: rgba(0, 117, 245, 0.4) !important;
    border-color: rgba(0, 117, 245, 0.7) !important;
    transform: translateY(-1px);
}

.schway-valet-portal-wrapper .gform_fileupload_rules {
    display: block;
    color: rgba(255, 255, 255, 0.38) !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.75rem !important;
    margin-top: 12px !important;
    line-height: 1.4;
}

/* ── Drag Active State ──────────────────────────────────────── */
.schway-valet-portal-wrapper .gform_drop_area.sv-drag-active {
    border: 2px solid rgba(0, 117, 245, 0.85) !important;
    background: rgba(0, 117, 245, 0.13) !important;
    transform: scale(1.008) !important;
    box-shadow: 0 0 0 4px rgba(0, 117, 245, 0.15), 0 0 50px rgba(0, 117, 245, 0.12) !important;
}

/* Scanning light beam */
.schway-valet-portal-wrapper .gform_drop_area.sv-drag-active::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 117, 245, 0.9),
        rgba(125, 211, 252, 1),
        rgba(0, 117, 245, 0.9),
        transparent
    );
    animation: sv-scan-line 1.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sv-scan-line {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Drop flash on release */
.schway-valet-portal-wrapper .gform_drop_area.sv-drop-flash {
    animation: sv-drop-flash 0.55s ease forwards !important;
}

@keyframes sv-drop-flash {
    0%   { background: rgba(0, 117, 245, 0.35) !important; box-shadow: 0 0 0 6px rgba(0, 117, 245, 0.25); }
    100% { background: rgba(255, 255, 255, 0.05) !important; box-shadow: none; }
}

/* ── GF native progress bar — hidden (using card fills instead) */
.schway-valet-portal-wrapper .gf_progressbar_wrapper {
    display: none !important;
}

/* ── GF native file list — hidden (replaced by cards) ───────── */
/* GF renders uploaded files into .ginput_preview (confirmed via basic.min.css) */
.schway-valet-portal-wrapper .ginput_preview {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ====================================================
   FILE ICON CARDS
   ==================================================== */

.sv-file-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

/* ── Card ───────────────────────────────────────────────────── */
.sv-file-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 74px;
    position: relative;
    animation: sv-card-enter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes sv-card-enter {
    from { transform: scale(0.4) translateY(10px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

@keyframes sv-card-exit {
    from { transform: scale(1); opacity: 1; }
    to   { transform: scale(0.4) translateY(6px); opacity: 0; }
}

/* ── Icon container ─────────────────────────────────────────── */
.sv-file-icon-wrap {
    width: 58px;
    height: 70px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Per-type top-border accent */
.sv-file-card-pdf   .sv-file-icon-wrap { border-top: 3px solid rgba(229, 62,  62,  0.7); }
.sv-file-card-image .sv-file-icon-wrap { border-top: 3px solid rgba(56,  178, 172, 0.7); }
.sv-file-card-video .sv-file-icon-wrap { border-top: 3px solid rgba(159, 122, 234, 0.7); }
.sv-file-card-word  .sv-file-icon-wrap { border-top: 3px solid rgba(0,   117, 245, 0.7); }

/* ── Fill layer — rises from bottom as file uploads ─────────── */
.sv-file-icon-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, #0075f5 0%, #2a8cff 50%, rgba(51, 153, 255, 0.85) 100%);
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* Shimmer on the fill surface */
.sv-file-icon-fill::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: sv-fill-shimmer 1.8s ease-in-out infinite;
}

@keyframes sv-fill-shimmer {
    0%   { left: -80%; }
    100% { left: 160%; }
}

/* ── File type SVG icon ─────────────────────────────────────── */
.sv-file-icon-svg {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sv-file-icon-svg svg {
    width: 26px;
    height: 26px;
    fill: rgba(255, 255, 255, 0.88);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

/* ── Progress percentage overlay ────────────────────────────── */
.sv-file-progress-pct {
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
    z-index: 2;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ── Done state ─────────────────────────────────────────────── */
.sv-file-card--done .sv-file-icon-wrap {
    border-color: rgba(0, 117, 245, 0.6) !important;
    box-shadow: 0 0 16px rgba(0, 117, 245, 0.28);
}

.sv-file-card--done .sv-file-progress-pct {
    opacity: 0;
}

/* ── Filename label ─────────────────────────────────────────── */
.sv-file-card-name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    max-width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

/* ── Remove button (appears on hover) ──────────────────────── */
.sv-file-card-remove {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.15s ease, background 0.15s ease;
    padding: 0;
    font-weight: 700;
}

.sv-file-card:hover .sv-file-card-remove {
    opacity: 1;
}

.sv-file-card-remove:hover {
    transform: scale(1.2);
    background: #e53e3e;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .schway-valet-portal-wrapper .gform_fileupload_multifile .gform_drop_area {
        padding: 24px 16px !important;
    }

    .schway-valet-portal-wrapper .gform_button_select_files {
        width: 100% !important;
        text-align: center;
    }

    .sv-file-cards { gap: 10px; }
    .sv-file-card  { width: 64px; }
    .sv-file-icon-wrap { width: 50px; height: 60px; }
    .sv-file-card-name { max-width: 64px; font-size: 0.62rem; }
}

/* ── Other Details — Sticky Note ─────────────────────────────────────────── */

#field_4_7 {
    position: relative;
    transform: rotate(-0.6deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

#field_4_7:focus-within {
    transform: rotate(0deg);
}

/* The sticky note card */
#field_4_7 .ginput_container_textarea {
    background: #fef08a !important;
    border-radius: 2px !important;
    padding: 14px 16px 20px !important;
    box-shadow:
        3px 3px 0 rgba(0,0,0,0.08),
        6px 6px 12px rgba(0,0,0,0.10),
        -1px -1px 0 rgba(255,255,255,0.6) inset !important;
    position: relative;
}

/* Top tape strip */
#field_4_7 .ginput_container_textarea::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 52px;
    height: 20px;
    background: rgba(253, 230, 138, 0.75);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border: 1px solid rgba(202,186,0,0.3);
}

/* Label */
#field_4_7 .gfield_label {
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.9) !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
}

/* Label badge */
#field_4_7 .gfield_label::after {
    content: 'Not included in the story — just notes for your designer';
    display: block;
    font-size: 0.75rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    margin-bottom: 10px;
}

/* The textarea itself */
#field_4_7 textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px dashed rgba(161,141,0,0.35) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: 'Caveat', cursive !important;
    font-size: 1.4rem !important;
    line-height: 1.7 !important;
    color: #44403c !important;
    padding: 4px 0 !important;
    resize: vertical;
    width: 100% !important;
    outline: none !important;
    transition: border-color 0.2s ease;
}

#field_4_7 textarea::placeholder {
    color: #a8a29e !important;
    font-style: italic;
}

#field_4_7 textarea:focus {
    border-bottom-color: rgba(161,141,0,0.7) !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Subtle hover lift */
#field_4_7:hover {
    transform: rotate(-0.3deg) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Mobile — flatten the rotation, keep it readable */
@media (max-width: 640px) {
    #field_4_7 {
        transform: none !important;
    }
    #field_4_7:hover,
    #field_4_7:focus-within {
        transform: none !important;
    }
    #field_4_7 .ginput_container_textarea::after {
        display: none;
    }
}
