* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Honeypot field - completely hidden from humans */
input[name="website"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f1a644 50%, #d44949 50%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    padding-top: 10px;
    max-width: 500px;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

}

.header-logo {
    max-width: 250px;
}

.form-group {
    margin-bottom: 25px;
}

.label-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.info-btn {
    padding: 6px 14px;
    background: linear-gradient(135deg, #37e7ea 0%, #3a77df 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.info-btn:hover {
     transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 170, 245, 0.489);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

.info-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.info-section:hover {
    border-color: #667eea;
}

.info-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-text h3 {
    color: #667eea;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .info-section {
        flex-direction: column;
        text-align: center;
    }

    .info-image {
        height: 180px;
        width: 100%;
    }
}

label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

input:focus, select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.fine-print {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

.dimensions-group {
    display: flex;
    gap: 15px;
}

.dimension-field {
    flex: 1;
}

.dimension-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #37e7ea 0%, #3a77df 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 170, 245, 0.489);
}

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

@media (max-width: 600px) {
    .form-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

     .header-logo {
    max-width: 180px;
  
}
    .form-container {
    padding-top: 10px;
    
}


}
