/* ─── Base ─── */
body {
    background-color: #FAF1CC;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4B4B4B;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
}

/* ─── Icon Grid ─── */
.icon-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.icon-link {
    text-decoration: none;
    color: #4B4B4B;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.icon-link:hover {
    transform: translateY(-10px);
}

.icon-link h2 {
    margin: 0;
    font-size: 1.5rem;
}

.icon-svg {
    width: 80px;
    height: 80px;
    fill: #FFEB3B;
    transition: fill 0.3s ease, transform 0.3s ease-in-out;
    display: block;
}

.icon-link:hover .icon-svg {
    fill: #FFC107;
    transform: rotate(5deg) scale(1.1);
}

.contact-info {
    margin-top: 50px;
    font-size: 1.2em;
}

/* ════════════════════════════════════════════
   POPUP CONTACT WIDGET
════════════════════════════════════════════ */

/* ─── Trigger Button ─── */
#ls-trigger {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    background: #f9c800;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249,200,0,0.55), 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 9px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    letter-spacing: 0.02em;
}

#ls-trigger:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 28px rgba(249,200,0,0.65), 0 4px 12px rgba(0,0,0,0.18);
}

#ls-trigger .ls-lemon-icon {
    font-size: 20px;
    line-height: 1;
}

/* ─── Overlay ─── */
#ls-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9001;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: ls-fadeIn 0.22s ease;
}

@keyframes ls-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ─── Modal ─── */
#ls-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9002;
    transform: translate(-50%, -52%) scale(0.94);
    opacity: 0;
    pointer-events: none;
    width: min(480px, calc(100vw - 32px));
    background: #fffde7;
    border-radius: 20px;
    border: 2px solid #f9c800;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.22),
        0 0 0 6px rgba(249,200,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.9);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), opacity 0.22s ease;
}

#ls-modal.ls-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* ─── Modal Header ─── */
.ls-header {
    background: linear-gradient(135deg, #f9c800 0%, #ffb300 100%);
    padding: 26px 28px 22px;
    position: relative;
}

.ls-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ls-header h2 {
    margin: 0 0 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.ls-header p {
    margin: 0;
    font-size: 13px;
    color: #5a4400;
}

.ls-lemon-big {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    animation: ls-sway 3.5s ease-in-out infinite;
    transform-origin: 50% 80%;
}

@keyframes ls-sway {
    0%, 100% { transform: rotate(-4deg); }
    50%       { transform: rotate(4deg); }
}

.ls-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.ls-close:hover { background: rgba(0,0,0,0.22); }

/* ─── Form Body ─── */
.ls-body {
    padding: 24px 28px 28px;
}

.ls-field {
    margin-bottom: 16px;
}

.ls-field label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #5a4400;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ls-field input,
.ls-field select,
.ls-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1.5px solid #f0d060;
    border-radius: 10px;
    background: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    -webkit-appearance: none;
}

.ls-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23b8860b'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.ls-field input:focus,
.ls-field select:focus,
.ls-field textarea:focus {
    border-color: #f9c800;
    box-shadow: 0 0 0 3px rgba(249,200,0,0.25);
}

.ls-field textarea {
    resize: vertical;
    min-height: 100px;
}

.ls-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ─── Submit Button ─── */
.ls-submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px;
    background: linear-gradient(135deg, #f9c800, #e6a800);
    border: none;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(249,200,0,0.4);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ls-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(249,200,0,0.55);
    filter: brightness(1.04);
}

.ls-submit:active { transform: translateY(0); }

.ls-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ─── Status Messages ─── */
.ls-status {
    display: none;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 14px;
}

.ls-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.ls-status.error {
    display: block;
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

/* ─── Success State ─── */
.ls-success-view {
    display: none;
    text-align: center;
    padding: 32px 28px 36px;
}

.ls-success-view .ls-check {
    font-size: 52px;
    margin-bottom: 12px;
}

.ls-success-view h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.ls-success-view p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.ls-success-view .ls-done-btn {
    margin-top: 22px;
    padding: 12px 28px;
    background: #f9c800;
    border: none;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: filter 0.15s;
}

.ls-success-view .ls-done-btn:hover { filter: brightness(1.06); }

/* ─── Honeypot ─── */
.ls-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
    .ls-row { grid-template-columns: 1fr; gap: 0; }
    .ls-header, .ls-body { padding-left: 18px; padding-right: 18px; }
}
